Advertisement
cuniszkiewicz

InstrukcjaWarunkowa

Oct 18th, 2023
721
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.48 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.             //podanie liczb
  17.             Console.Write("Podaj a: ");
  18.             a = int.Parse(Console.ReadLine());
  19.             Console.Write("Podaj b: ");
  20.             b = int.Parse(Console.ReadLine());
  21.  
  22.             //obliczenie sumy
  23.             c = a + b;
  24.             //Wyświetlenie wyniku
  25.             Console.WriteLine($"{a} + {b} = {c}");
  26.  
  27.             c = a - b;
  28.             Console.WriteLine($"{a} - {b} = {c}");
  29.             c = a * b;
  30.             Console.WriteLine($"{a} * {b} = {c}");
  31.             /*
  32.             if (b != 0) //instrukcja warunkowa if
  33.             {
  34.                 d = (double)a / b; //szybkie rzutowanie typu int na double
  35.                 Console.WriteLine($"{a} / {b} = {d}");
  36.             }
  37.             if ( b == 0)
  38.                 Console.WriteLine("Nie dziel przez 0!");
  39.             */
  40.  
  41.             if (b != 0) //instrukcja warunkowa if-else
  42.             {
  43.                 d = (double)a / b; //szybkie rzutowanie typu int na double
  44.                 Console.WriteLine($"{a} / {b} = {d}");
  45.             }
  46.             else
  47.                 Console.WriteLine("Nie dziel przez 0!");
  48.  
  49.             Console.ReadKey();
  50.  
  51.         }
  52.     }
  53. }
  54.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement