Answer to Question #20142 in C# for kumar saurav

Question #20142
write a program to print the print the product of the first 10 even number.
1
Expert's answer
2012-12-10T10:46:34-0500
using System;

namespace Product
{
class Program
{
& static void Main(string[] args)
& {
long product = 1;
for (int number = 1; number <= 10; number++)
product *= (number * 2);

Console.WriteLine(@"The product of the first 10 even numbers starting from 2 is {0}.", product);
Console.WriteLine("The product of the first 10 even numbers starting from 0 is 0.");
Console.ReadKey();
& }
}
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS