рыба
unknown
c_cpp
2 years ago
310 B
11
Indexable
#include <string>
#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL, "russian");
int a, b, c, d, e;
cout << "Введите пять чисел: " << endl;
cin >> a >> b >> c >> d >> e;
cout << "Средняя оценка: " <<double(a + b + c + d + e) / 5;
return 0;
}Editor is loading...