Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace IncreaseDemo
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("Въведете две цели и едно десетично число:");
- int n1 = int.Parse(Console.ReadLine());
- int n2 = int.Parse(Console.ReadLine());
- double n3 = double.Parse(Console.ReadLine());
- Console.WriteLine("Сборът на трите числа е:");
- Console.WriteLine(n1+n1+n3);
- Console.WriteLine("Разликата на трите числа е:");
- Console.WriteLine(n1-n1-n3);
- Console.WriteLine("Произведението на трите числа е:");
- Console.WriteLine((n1*n1)*n3);
- }
- }
- }
Add Comment
Please, Sign In to add comment