Advertisement
cuniszkiewicz

Zmienne

Oct 31st, 2023
630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.99 KB | None | 0 0
  1. namespace Filip_28_10_2023
  2. {
  3. class Program
  4. {
  5.     static void Main(string[] args)
  6.     {
  7.         string imie, nazwisko;
  8.         int wiek = 12;
  9.         int a, b;
  10.  
  11.         Console.Write("Podaj imię: ");
  12.         imie = Console.ReadLine();
  13.        
  14.         Console.Write("Podaj a: ");
  15.         a = int.Parse(Console.ReadLine());
  16.  
  17.        
  18.         Console.Write("Podaj b: ");
  19.         b = int.Parse(Console.ReadLine());
  20.        
  21.         int suma = a + b;
  22.         int roznica = a - b;
  23.         int iloczyn = a * b;
  24.        
  25.  
  26.         Console.Clear();
  27.  
  28.         Console.WriteLine($"Cześć {imie}, to wyniki Twoich obliczeń: ");
  29.         Console.WriteLine();
  30.  
  31.         Console.WriteLine($"{a} + {b} = {suma}");
  32.         Console.WriteLine($"{a} - {b} = {roznica}");
  33.         Console.WriteLine($"{a} * {b} = {iloczyn}");
  34.         if (b != 0)
  35.         {
  36.             double iloraz = (double)a / b; //szybkie rzutowanie
  37.             Console.WriteLine($"{a} / {b} = {iloraz}");
  38.         }
  39.  
  40.     }
  41. }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement