Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace prac
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.Write("Номинал купюры = ");
- int a = int.Parse(Console.ReadLine());
- Console.Write("Количество купюр = ");
- int b = int.Parse(Console.ReadLine());
- Console.Write("Сумма денег = ");
- Console.WriteLine("{0,00:C}", a * b);
- Console.ReadKey();
- }
- }
- }
Add Comment
Please, Sign In to add comment