Etiket: c#
1’den 1000’e Beşerli Sayma
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 herefor (int s = 0; s <= 1000; s=s+5){Console.WriteLine(s.ToString());}}}}