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;
- //pobranie pierwszej liczby:
- Console.Write("Podaj a: ");
- a = int.Parse(Console.ReadLine());
- //pobranie drugiej liczby:
- Console.Write("Podaj b: ");
- b = int.Parse(Console.ReadLine());
- c = a + b;
- 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
- Console.WriteLine("Nie dziel przez 0!");
- if (b != 0) // != nie jest równe
- {
- d = (double)a / b; //szybkie rzutowanie typu int na double
- Console.WriteLine($"{a} / {b} = {d}");
- }
- */
- if (b == 0) // instrukcja warunkowa if-else
- Console.WriteLine("Nie dziel przez 0!");
- else
- {
- d = (double)a / b; //szybkie rzutowanie typu int na double
- Console.WriteLine($"{a} / {b} = {d}");
- }
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement