Advertisement
rorschack

c++ prac prog - 15

Aug 16th, 2015
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream.h>
  2. #include <conio.h>
  3.  
  4. void main()
  5. {
  6.     clrscr();
  7.     unsigned int n,sum(0);
  8.     cout << "Enter a number: ";
  9.     cin >> n;
  10.     for (int i(1); i<=n; i++)
  11.         sum+=i;
  12.     cout << "\n\nSum of nos. from 1 to " << n << " is " << sum << endl;
  13.     getch();
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement