Untitled
unknown
plain_text
2 years ago
606 B
10
Indexable
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Vnesi eden broj: ");
int x = Convert.ToInt32(Console.ReadLine());
int sum = 0;
for(int i = 1; i <= x; i++)
{
sum += i;
}
Console.WriteLine("Zbirot na broevite od 1 do {0} e: {1}", x, sum);
Console.Read();
}
}
}
Editor is loading...