1’den 100’e Algoritması

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;

/Please dont change namespace, Dcoder and class must not be public/

//Compiler version 4.0, .NET Framework 4.5

namespace Dcoder
{
public class Program
{
public static void Main(string[] args)
{
//Your code goes here
for (int s = 1; s <= 100; s=s+1)
{
Console.WriteLine(s.ToString());
}
}
}
}


Yorumlar

Bir cevap yazın

E-posta hesabınız yayımlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir

This site uses Akismet to reduce spam. Learn how your comment data is processed.