Competitive Programming
Try To Help To Generate & Improve The Idea Of Competitive Programming
Wednesday, August 23, 2017
1059 Even Numbers URI Problem Only Solution In C#
using System;
class URI {
static void Main(string[] args) {
for(int i=2;i<=100;i=i+2){
Console.WriteLine(i);
}
}
}
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment