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 / 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 |
How to make a class not inheritable other than sealed?
What is parsing?
Can you mark static constructor with access modifiers?
What is Dispose method in .NET?
Is array passed by reference in c#?
what is a enumeration in c#
How can you clean up objects holding resources from within the code?
What is the difference between array and arraylist c#?
what is reference parameter? what is out parameters? what is difference these two?
9 Answers Bally Technologies, SPIC, Wipro,
Explain streamreader/streamwriter class?
How to use delegates with events?
Is static thread safe?