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();
}
}



Using system; class main { public static void Main() { int a = ..

Answer / 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

More C Sharp Interview Questions

What is a service layer c#?

0 Answers  


What is an int c#?

0 Answers  


Why we use oops in c#?

0 Answers  


WHAT IS THE EXACT USE OF INTERFACE(DONT TELL USE FOR MULTIPLE INHERITANCE)

5 Answers   eXensys,


Which debugging tools you can use in the .NET ssSDK?

0 Answers   Siebel,






What is nameof c#?

0 Answers  


What is a di class?

0 Answers  


What are the value types in c#?

0 Answers  


Why do we use overloading in c#?

0 Answers  


What is foreach loop in c#?

0 Answers  


What?s the difference between System.String and System.StringBuilder classes?

1 Answers  


What are the ways in which client can create object on server in cao model?

0 Answers  


Categories