Server IP : 172.16.15.8 / Your IP : 3.12.148.180 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/snbittner/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// CS212 CS II Assignment 1 // Due: Mon. Feb. 14, 2011 // // File Name: hw1.cpp // Author: Stephanie Bittner // Instuctor: Dr. Wang // // Compile: g++ hw1.cpp // Run: ./a.out < stuScores.txt > out.txt // // Goal: The program will read a file of students names and scores, process them, and output the average for each student to a // file. // #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; int sum = 0; cin >> s1 >> s2 >> t1 >> t2 >> t3; stu.first = s1; stu.last = s2; stu.test1 = t1; stu.test2 = t2; stu.test3 = t3; while(cin) { sum = (stu.test1 + stu.test2 + stu.test3); cout << "Name: " << stu.first << " " << stu.last << " , tests: " << stu.test1 << ", " << stu.test2 << ", " << stu.test3 << " , " << "Average: " << sum / 3.0 << "\n"; cin >> s1 >> s2 >> t1 >> t2 >> t3; stu.first = s1; stu.last = s2; stu.test1 = t1; stu.test2 = t2; stu.test3 = t3; } return 0; }