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(); & } } }
Comments
Leave a comment