Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

Why is c# better than java?

958


Give some examples for built in datatypes in c#?

913


What is .net c#?

842


What is the difference between System.console.WriteLine() and System.console.Write() function?example?

1008


If you define a user defined data type by using the struct keyword, is it a value type or reference type?

831


What is parallel foreach c#?

901


Can arraylist store different data types in c#?

930


What is web forms in c#?

873


How can we set the class to be inherited, but prevent the method from being over-ridden?

923


What is an argument in c#?

893


how to implement a web service in .net

924


in object oriented programming, how would you describe encapsulation?

969


Which controls do not have events?

979


What is the use of system.environment class in c#.net?

913


Why do we use threads in c#?

945