Advertisement
Pafnytiu

program 10

Oct 10th, 2015
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int n, s = 0;
  6.     cout << "Write n"<<endl;
  7.     cin >> n;
  8.     for (int i =1; i <= n; i++)
  9.         s += pow(i,2);
  10.     cout << s<<endl;
  11.     system("pause");
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement