Advertisement
cuniszkiewicz

If_else

Oct 18th, 2023
672
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.49 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace OperacjeMatematyczne
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             //deklaracja zmiennych:
  14.             int a, b, c;
  15.             double d;
  16.             //pobranie pierwszej liczby:
  17.             Console.Write("Podaj a: ");
  18.             a = int.Parse(Console.ReadLine());
  19.             //pobranie drugiej liczby:
  20.             Console.Write("Podaj b: ");
  21.             b = int.Parse(Console.ReadLine());
  22.  
  23.             c = a + b;
  24.             Console.WriteLine($"{a} + {b} = {c}");
  25.             c = a - b;
  26.             Console.WriteLine($"{a} - {b} = {c}");
  27.             c = a * b;
  28.             Console.WriteLine($"{a} * {b} = {c}");
  29.             /*
  30.             if (b == 0) // instrukcja warunkowa if
  31.                 Console.WriteLine("Nie dziel przez 0!");
  32.             if (b != 0) // != nie jest równe
  33.             {
  34.                 d = (double)a / b; //szybkie rzutowanie typu int na double
  35.                 Console.WriteLine($"{a} / {b} = {d}");
  36.             }
  37.             */
  38.             if (b == 0) // instrukcja warunkowa if-else
  39.                 Console.WriteLine("Nie dziel przez 0!");
  40.             else
  41.             {
  42.                 d = (double)a / b; //szybkie rzutowanie typu int na double
  43.                 Console.WriteLine($"{a} / {b} = {d}");
  44.             }
  45.  
  46.  
  47.             Console.ReadKey();
  48.         }
  49.     }
  50. }
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement