Advertisement
tmollov

Untitled

Jan 24th, 2017
472
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. class Program
  5. {
  6. static void Main()
  7. {
  8. int a = int.Parse(Console.ReadLine());
  9. decimal sum = decimal.Parse(Console.ReadLine());
  10. for (int i = 1; i < a; i++)
  11. {
  12. sum *= decimal.Parse(Console.ReadLine());
  13. }
  14. Console.WriteLine(sum);
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement