Server IP : 172.16.15.8 / Your IP : 18.227.209.214 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/sjpruden/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// CS212 Assignment 1 // Due: Monday, February 14, 2011 // File Name: assignment1.cpp // Author: Spencer Pruden // Instructor: Dr. Wang // // Goal: Write a program to read a file for the // students' scoresprocess 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 avg; }; int main() { StudentRec stu; string s1, s2; int t1, t2, t3; int avg; cin >> s1 >> s2 >> t1 >> t2 >> t3; stu.first = s1; stu.last = s2; stu.test1 = t1; stu.test2 = t2; stu.test3 = t3; stu.avg = avg; while(cin) { cout << "Name: " << stu.first << " " << stu.last << ", Average: " << stu.avg << "\n"; cin >> s1 >> s2 >> t1 >> t2 >> t3; stu.first = s1; stu.last = s2; stu.test1 = t1; stu.test2 = t2; stu.test3 = t3; stu.avg = (t1 + t2 + t3) / 3; } return 0; }