TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Ajay Kumar
NA
1
2.5k
Multiplication table : Correct which Worls
Jan 13 2013 4:24 AM
using System;
public class MultiplicationTable
{
public static void Main()
{
int i;
Console.WriteLine("Enter the No. ");
i =Convert.ToInt32(Console.ReadLine());
{
int j = 1;
while (j <= 10)
{
Console.WriteLine(" {0} x {1} = {2} ", i, j, i*j);
j++;
}
}
}
}
Reply
Answers (
1
)
Setting Up CSS on any DIV using C#
Validations in Ajax canlandar.