Server IP : 172.16.15.8 / Your IP : 3.133.107.11 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/acyurksaitis/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// CS212 HW #2: homework2.cpp // // Due: February 13, 2008 // // Author: Amy Yurksaitis // // Instructor: Dr. Wang // // Goal: To write a program that allows the user to input student // data such as; name, age, and test scores. Then the program // will output to the screen that information plus the // students average, the class average, // and the average age of the class // // Compile: g++ homework2.cpp -o homework2.out // Run: ./homework2.out ///////////////////////////////////////////////////////////////////////////// #include<iostream> #include<iomanip> using namespace std; struct Student { string name; int test1, test2, final; int age; float avg; }; int main() { Student someone; char dummy; float class_total = 0; float class_size = 0; float class_avg; float avg_age = 0; float total_age; cout << "Input the name: "; getline (cin, someone.name) ; while(cin) { cout << "Enter student's age: "; cin >> someone.age ; cout << "Three exam scores: "; cin >> someone.test1 >> someone.test2 >> someone.final; class_size ++; someone.avg = (someone.test1 + someone.test2 + someone.final)/4.0 ; class_total += someone.avg; avg_age += someone.age; cout << "Name: " << someone.name << endl; cout << "Age: " << someone.age << endl; cout << "Test 1: " << someone.test1 << endl; cout <<"Test 2: " << someone.test2 <<endl; cout <<"Final: " << someone.final <<endl; cout << "Student average: " << fixed << setprecision(1) << someone.avg << endl; cin.get(dummy); cout <<"Input the name: "; getline(cin, someone.name); } total_age = avg_age/ class_size; class_avg = class_total/ class_size; cout << "\nClass average: " << class_avg << fixed << setprecision(1) << endl; cout << "Average age of the class: " << fixed << setprecision(0) << total_age << endl; cout << "\n\nDone.\n"; return 0; }