Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OperacjeMatematyczne
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- //deklaracja zmiennych
- int a, b, c;
- double d;
- //podanie liczb
- Console.Write("Podaj a: ");
- a = int.Parse(Console.ReadLine());
- Console.Write("Podaj b: ");
- b = int.Parse(Console.ReadLine());
- //obliczenie sumy
- c = a + b;
- //Wyświetlenie wyniku
- Console.WriteLine($"{a} + {b} = {c}");
- c = a - b;
- Console.WriteLine($"{a} - {b} = {c}");
- c = a * b;
- Console.WriteLine($"{a} * {b} = {c}");
- /*
- if (b != 0) //instrukcja warunkowa if
- {
- d = (double)a / b; //szybkie rzutowanie typu int na double
- Console.WriteLine($"{a} / {b} = {d}");
- }
- if ( b == 0)
- Console.WriteLine("Nie dziel przez 0!");
- */
- if (b != 0) //instrukcja warunkowa if-else
- {
- d = (double)a / b; //szybkie rzutowanie typu int na double
- Console.WriteLine($"{a} / {b} = {d}");
- }
- else
- Console.WriteLine("Nie dziel przez 0!");
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement