// Gage Alvarez CS1A Chapter 3 P.186, #3
/**************************************************************
*
* Calculating test average
* ____________________________________________________________
* Description
* This program Calculates the average score of 5 tests
* ____________________________________________________________
* INPUT
* test1: the score of test 1
* test2: the score of test 2
* test3: the score of test 3
* test4: the score of test 4
* test5: the score of test 5
* OUTPUT
* average: the average of the scores
*
**************************************************************/
#include <iostream>
int main() {
float test1;
float test2;
float test3;
float test4;
float test5;
float average;
std::cin >> test1 >> test2 >> test3 >> test4 >>test5;
average = (1.0* test1 + test2 + test3 + test4 + test5)/ 5;
std::cout << "The average score for all tests is " << average;
}
Ly8gR2FnZSBBbHZhcmV6ICAgICAgICAgICAgICAgICAgICAgICAgQ1MxQSAgICAgICAgICAgICAgICAgIENoYXB0ZXIgMyBQLjE4NiwgIzMKIAovKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioKICoKICogQ2FsY3VsYXRpbmcgdGVzdCBhdmVyYWdlCiAqIF9fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fXwogKiBEZXNjcmlwdGlvbgogKiBUaGlzIHByb2dyYW0gQ2FsY3VsYXRlcyB0aGUgYXZlcmFnZSBzY29yZSBvZiA1IHRlc3RzIAogKiBfX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18KICogSU5QVVQKICogIHRlc3QxOiB0aGUgc2NvcmUgb2YgdGVzdCAxCiAqCXRlc3QyOiB0aGUgc2NvcmUgb2YgdGVzdCAyCiAqCXRlc3QzOiB0aGUgc2NvcmUgb2YgdGVzdCAzCiAqCXRlc3Q0OiB0aGUgc2NvcmUgb2YgdGVzdCA0CiAqCXRlc3Q1OiB0aGUgc2NvcmUgb2YgdGVzdCA1CiAqIE9VVFBVVAogKglhdmVyYWdlOiB0aGUgYXZlcmFnZSBvZiB0aGUgc2NvcmVzCiAqCQogKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovCiAKICNpbmNsdWRlIDxpb3N0cmVhbT4KIAogaW50IG1haW4oKSB7CiAJZmxvYXQgdGVzdDE7CiAJZmxvYXQgdGVzdDI7CiAJZmxvYXQgdGVzdDM7CiAJZmxvYXQgdGVzdDQ7CiAJZmxvYXQgdGVzdDU7CiAJZmxvYXQgYXZlcmFnZTsKIAkKIAlzdGQ6OmNpbiA+PiB0ZXN0MSA+PiB0ZXN0MiA+PiB0ZXN0MyA+PiB0ZXN0NCA+PnRlc3Q1OwoJYXZlcmFnZSA9ICgxLjAqIHRlc3QxICsgdGVzdDIgKyB0ZXN0MyArIHRlc3Q0ICsgdGVzdDUpLyA1OwoJc3RkOjpjb3V0IDw8ICJUaGUgYXZlcmFnZSBzY29yZSBmb3IgYWxsIHRlc3RzIGlzICIgPDwgYXZlcmFnZTsKIH0=