siveambraiMay 4, 2015COSC 250 SP2015Comments Off on Final Project
Your final project will consist of an adventure game written in Python. The game may either use simple graphics or text based interactions. Your game should consist of a basic game engine that can read and interpret user input and…Continue Reading →
siveambraiApril 16, 2015COSC 250 SP2015Comments Off on in Class Code 4-16-15
Compound Interest Graph: from graphics import * def main(): print(“This program plots the growth of a 10-year investment.”) principal = eval(input(“Enter the initial principal: “)) apr = eval(input(“Enter the annualized interest rate: “)) win = GraphWin(“Investment…Continue Reading →
siveambraiMarch 26, 2015COSC 250 SP2015Comments Off on Homework 4
Create several small programs that answer the following questions: 1. Question One Read a nonnegative integer N (range 0 to 20) and print the powers of 2 from 1 to 2N. You do not need to validate that the integer is…Continue Reading →