Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. using System;
  2.  
  3. public class Program
  4. {
  5. public static void Main()
  6. {
  7. Console.WriteLine("Enter in a number between 1-100.");
  8. int cMax = Convert.ToInt32(Console.ReadLine());
  9.  
  10. int sum = 0;
  11. for(int i = 0; i <= cMax; i++)
  12. {
  13. sum += i;
  14. }
  15.  
  16. Console.WriteLine(sum);
  17. Console.ReadLine();
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement