damesova

Untitled

Nov 4th, 2025
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.79 KB | None | 0 0
  1. namespace IncreaseDemo
  2. {
  3.     internal class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             Console.WriteLine("Въведете две цели и едно десетично число:");
  8.             int n1 = int.Parse(Console.ReadLine());
  9.             int n2 = int.Parse(Console.ReadLine());
  10.             double n3 = double.Parse(Console.ReadLine());
  11.  
  12.             Console.WriteLine("Сборът на трите числа е:");
  13.             Console.WriteLine(n1+n1+n3);
  14.             Console.WriteLine("Разликата на трите числа е:");
  15.             Console.WriteLine(n1-n1-n3);
  16.             Console.WriteLine("Произведението на трите числа е:");
  17.             Console.WriteLine((n1*n1)*n3);
  18.  
  19.  
  20.  
  21.         }
  22.     }
  23. }
  24.  
Add Comment
Please, Sign In to add comment