- Portals
- The Current Year
- ED in the News
- Admins
- Help ED Rebuild
- Archive
- ED Bookmarklet
- Donate Bitcoin
Contact an admin on Discord or EDF if you want an account. Also fuck bots.
User:NKO/C++ codes: Difference between revisions
< User:NKO
imported>NKO lurnin C++ code |
imported>NKO lurnin C++ code |
(6 intermediate revisions by the same user not shown) | |
(No difference)
|
Latest revision as of 19:15, 11 February 2014
#include <iostream> using namespace std; int main() { cout << "\tHello World!\n" << endl; /*cout << "7 + 3 = " << 7 + 3 << endl; cout << "7 - 3 = " << 7 - 3 << endl; cout << "7 * 3 = " << 7 * 3 << endl; cout << "7 / 3 = " << 7 / 3 << endl; cout << "7.0 / 3.0 = " << 7.0 / 3.0 << endl; cout << "7 % 3 = " << 7 % 3 << endl; cout << "7 + 3 * 5 = " << 7 + 3 * 5 << endl; cout << "(7 + 3) * 5 = " << (7 + 3) * 5 << endl; cout << "8 + 90 + 2 = " << 7 + 91 + 2 << endl; cout << endl << endl;*/ int score; double distance; char playAgain; bool shieldsUp; short lives, aliensKilled; score = 0; distance = 1200.76; playAgain = 'y'; shieldsUp = true; lives = 3; aliensKilled = 10; double engineTemp = 6572.89; cout << "\nscore: " << score << endl; cout << "distance:" << distance << endl; cout << "playAgain:" << playAgain << endl; //skipping shieldsup cout << "lives:" << lives << endl; cout << "aliensKilled:" << aliensKilled << endl; cout << "engineTemp:" << engineTemp << endl; int fuel; cout << "\nHow much fuel? "; cin >> fuel; cout << "fuel: " << fuel << endl; typedef unsigned short int ushort; ushort bonus = 10; cout << "\nbonus: " << bonus << endl; return 0; }