рыба
unknown
c_cpp
a year ago
310 B
2
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...