Using system;
class main
{
public static void Main()
{
int a = 1;
for (int i = 0; i < 10; i++)
{
int j = a * 5;
Console.WriteLine(a + "*5=" + j);
a++;
}
Console.ReadLine();
}
}
Answer Posted / suresh kumar patra
1*5=5
2*5=10
3*5=15
4*5=20
5*5=25
6*5=30
7*5=35
8*5=40
9*5=45
10*5=50
Is This Answer Correct ? | 19 Yes | 2 No |
Post New Answer View All Answers
How would you describe encapsulation in c#?
What is the difference between a field and a property in c#?
What is datarelation c#?
What is type safe code?
Do loops in c#?
What is type checking in c#?
Is c# and .net same?
What is difference between float and decimal?
What is a console operator?
Is predicate a functional interface?
Explain the difference between Response.Write () and Response.Output.Write ().
What are the three types of operators?
How can I get around scope problems in a try/catch?
Tell us something about static linking and dynamic linking?
What is the use of the dispose method in C# ?