Competitive Programming
Try To Help To Generate & Improve The Idea Of Competitive Programming
Wednesday, August 23, 2017
1078 Multiplication Table URI Problem Only Solution in C#
using System;
class Exercise8
{
static void Main()
{
int n=Convert.ToInt32(Console.ReadLine());
for(int i=1;i<=10;i++)
{
Console.WriteLine(i+" x "+n+" = "+(n*i));
}
}
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment