Jump to content

kaizen_0

Active Members
  • Posts

    40
  • Joined

  • Last visited

Everything posted by kaizen_0

  1. nice man, i think ur gonna win for sure. thats the most complex app that this topic has had so far. Awesome man keep up the good work. GO c++, lol.
  2. so is anyone gonna put something new, a new challenge perhaps cause it doesnt look like anyone is gonna do the current one.
  3. i dont know about you but when i try to compile it i get errors, you might want to check your code. just saying, im gonna check to see if its just my compiler. well most of it looks good but just a couple of errors. good job.
  4. its good. easy_code did everyone find the all the errors? please post all the errors you have. when u do then, i guess since u where the only one to enter u win and u get to post the new challenge. Good Job easy_code.
  5. u have to make a random generator (not only numbers) where u can enter the choices. and make it with errors that the compiler cant catch and get people to find them.
  6. ---Challenge 4--- Feb. 21 2007 9:30 PM EST Ok, this is gonna be a weird one. Description: create a program that is meant to crash, but hide the intentional error. Don't tell what the error is you can put up to 5 errors in it. The program must be a Random Generator (yes but no ordinary one, it must allow the user to input the different choices and the randomly choose one). To win: to win you must make the coolest one (of course) and have the hardest errors to find. People must also participate and post the errors they find and you cannot post your errors (answers) until the challenge is done. Also the more complex the better. Time: you have one week from today (Feb. 28, 2007 at 9:30 PM EST). Requirements: Must be written in C++, must have a .EXE (for at least windows). Have fun and i know its a weird challenge but it helps both ways, you get to practice programming, and others get to practice debugging.
  7. heres where to get the .exe for my calculator application. For Mac OS X and Windows http://homepage.mac.com/kaizen_0/FileSharing1.html
  8. // calculator - enter to numbers and the program sums them // creator: Kaizen_0; version: 0.1; <stable>; #include <iostream> #include <iomanip> using namespace std; class equation { public: char func; int result; int first; int second; }; int main(void) { cout << "Welcome to Kaizen_0's calculator app. n" << "Just enter a number, the operator (+, -, *, /),n" << "and a second number." << endl; equation eq; cout << "Enter numbers and operator: "; while (cin >> eq.first >> eq.func >> eq.second) { switch (eq.func) { case '+': eq.result = eq.first + eq.second; break; case '-': eq.result = eq.first - eq.second; break; case '*': eq.result = eq.first * eq.second; break; case '/': eq.result = eq.first / eq.second; break; default: cout << "ErRoR!" << eq.func<< "'" << endl; continue; } cout << "The result is: " << eq.result << endl; } return 0; } there the new one with a class
  9. Um why? Was the challenge requirements. o forgot about that. ill fix it. thx.
  10. we know its not the sum, i had it as sum because when i was testing it at the beginning i had sum and i just changed it to say "The result is:". i know its different with sub, mult and div.
  11. o ya thx missed that ment to change it.
  12. // calculator - enter two numbers and the program sums them // creator: Kaizen_0; version: 0.1; <stable>; #include <iostream> #include <iomanip> using namespace std; int main(void) { cout << "Welcome to Kaizen_0's calculator app. n" << "Just enter a number the operator (+, -, *, /)n" << "and a second number." << endl; char func; int result; int first; int second; cout << "Enter numbers and operator: "; while (cin >> first >> func >> second) { switch (func) { case '+': result = first + second; break; case '-': result = first - second; break; case '*': result = first * second; break; case '/': result = first / second; break; default: cout << "ErRoR!" << func<< "'" << endl; continue; } cout << "The result is: " << result << endl; } return 0; } this is the calc app. sorry dont have the .exe yet.
  13. ---NEW CHALLENGE--- Feb. 11, 2008 Language: any Description: Create a mini-downloader. Must be able to download files from the internet. Size of file doesn't matter just the quality. Optional to include a GUI, extra points if you do. Must Have: An area to input the URL, a way to submit or cancel, and a load-bar (or a way to see the downloads progress). Time limit: 1 1/2 - 2 weeks To win: Download successfully, looks good. Also try to make it as short as possible.
  14. i just got a version of adobe illustrator 88, and was wondering, does anyone now anything about it. all i know and can find is that it is adobe (of corse) and that it was made in 1988 (again of corse). so if anyone knows anything at all please reply. thank you.
×
×
  • Create New...