/* Answer to Problem #1, Prof. Barimani's Programming I class Spring 2011 */ #include using namespace std; int main() { float Test1, Test2, Test3; cout<<"Please enter scores for Test1..Test3 based on 100, 100, 100? "; cin>>Test1>>Test2>>Test3; float Avg; Avg= (Test1 + Test2 + Test3) / 3.0; cout<<"The student "; if (Avg < 60.0) cout<<"failed.\n"; else cout<<"passed.\n"; cout<<"Average= "<