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
Hello! How to do this: "Create manifest utility intended for creating update content files. Application should take a set of files as input parameter and generate XML based manifest file as output one." I use C# and vs.net 2003. It's urgent! Help please, thanks. Mayana
What are the 3 different types of arrays?
Can we maintain state in webservice?
How to properly clean up excel interop objects?
Where do we use serialization in c#?
What is a delegate? Explain.
Can you instantiate a struct without using a new operator in c#?
What are the collection types can be used in c#?
What's your approach to fetch static data in your windows form application?
Explain the Abstract class in c#.net
How is exception handling implemented in c#?
Is string nullable c#?
How many types of interface are there in c#?
Should I make my destructor virtual?
How jit (just in time) works?