Advertisement
Alex_Fomin

Untitled

Nov 17th, 2015
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <cstdlib>
  3.  
  4. using namespace System;
  5.  
  6. int main()
  7. {
  8.     int n = 10;
  9.     double result;
  10.  
  11.     for (int i = 1; i<=n; i++)
  12.     {
  13.         Console::Write(L"Введите "+i+"-ю оценку по математике: ");
  14.         int x = Convert::ToByte(Console::ReadLine());
  15.         result +=x;
  16.     }
  17.    
  18.     Console::WriteLine(L"Средний бал по математике: "+result/n);
  19.     system("pause");
  20.     return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement