Server IP : 172.16.15.8 / Your IP : 3.138.134.221 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/bsjackson/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// CS212 CS II Assignment 1 // // Due: Monday 14, 2011 // // File: hw.cpp // Author: Brittany Jackson // Instructor: Dr. Wang // // Compile: g++ hw1.cpp // Run: ./a.out > stuScores.txt // // Goal: Read a file for the students' scores, process it, and output // the average for each student. #include <iostream> using namespace std; struct StudentRec { string first; string last; int test1; int test2; int test3; }; int main() { StudentRec stu; string s1, s2; int t1, t2, t3; cin >> s1 >> s2 >> t1 >> t2 >> t3; stu.first = s1; stu.last = s2; stu.test1 = t1; stu.test2 = t2; stu.test3 = t3; while(cin) { // process -- float avg = (stu.test1 + stu.test2 + stu.test3)/ 3.0; //debug //cout << "Student: " << stu.first << ", " << stu.last << // ", Average Score: " << avg << "\n\n"; cout << "Name: " << stu.first << ", " << stu.last << ", tests: " << stu.test1 << ", " << stu.test2 << ", " << stu.test3 << ", Average: " << avg << "\n"; cin >> s1 >> s2 >> t1 >> t2 >> t3; stu.first = s1; stu.last = s2; stu.test1 = t1; stu.test2 = t2; stu.test3 = t3; } return 0; }