Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ConsoleApplication4
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("Dodawanie");
- Console.WriteLine("Podaj liczbe");
- int liczba,suma=0;
- if (int.TryParse(Console.ReadLine(),out liczba))
- {
- for ( int i = 1; i<=liczba; i++ )
- {
- suma+=i;
- }
- }
- else
- Console.WriteLine("Bład!");
- Console.WriteLine("1+...+" + liczba + "=" + suma);
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment