#include #include #include using namespace std; int main() { int a,b,c,i,x = 12; char* Hello = "How are you"; int age = 100, zipcode = 1001; string mystr; cout << "Output sentence\n"; // prints Output sentence on screen cout << 120 << "\n"; // prints number 120 on screen cout << x << "\n"; // prints the content of x on screen //cout << "Hello" << "\n"; // prints Hello //cout << Hello << "\n"; // prints the content of Hello variable //cout << "Hello, " << "I am " << "a C++ statement" << "\n"; //cout << "Enter your age here: "; //cin >> age; //cout << "Hello, I am " << age << " years old and my zipcode is " << zipcode << "\n"; //cout << "First sentence." << endl; // endl also = \n //cout << "Second sentence." << endl; //cout << "Please enter an integer value: "; //cin >> i; //cout << "The value you entered is " << i; //cout << " and its double is " << i*2 << ".\n"; //cout << "Enter 3 numbers separated by spaces: "; //cin >> a >> b >> c; //cout << "You have enter: " << a << ", " << b << " and " << c << "\n"; /*cout << "What is your name? "; getline(cin, mystr); cout << "Hello " << mystr << "!\n"; cout << "What is your favorite team in rugby Worldcup? "; getline(cin, mystr); cout << "I like " << mystr << " too!\n";*/ return 0; }