Page 84 of 110
Re: Count to 1000
Posted: September 8th, 2010, 6:00 am
by Runescapedj
824
and the number I insert: 823
Re: Count to 1000
Posted: September 8th, 2010, 8:16 am
by InHumanUnit
[Insert gun here] "Gunz here!"
825
Re: Count to 1000
Posted: September 8th, 2010, 9:57 am
by Runescapedj
826
Re: Count to 1000
Posted: September 8th, 2010, 6:05 pm
by chocolatepie33
Time for some C++:
Code: Select all
#include <iostream>
using namespace std;
int main() {
int number;
cout << "Please enter a number." << endl;
cin >> number;
cout << "You picked " << number << "for your number.";
cout << "number plus one equals: " << (number + 1);
return 0;
}
827
Re: Count to 1000
Posted: September 8th, 2010, 7:41 pm
by esequiel14
Re: Count to 1000
Posted: September 8th, 2010, 7:44 pm
by chocolatepie33
829
Re: Count to 1000
Posted: September 8th, 2010, 7:50 pm
by esequiel14
Re: Count to 1000
Posted: September 8th, 2010, 7:59 pm
by PizzaLover101
Re: Count to 1000
Posted: September 8th, 2010, 8:10 pm
by chocolatepie33
Gimme a few days and I'll try to make a good one...
832
Re: Count to 1000
Posted: September 9th, 2010, 8:52 am
by Runescapedj