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 Lekcja3
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int a = 5;
- int b = 10;
- int c = 4;
- // dodawanie
- int suma = a + b + c;
- Console.WriteLine(suma); // 19
- // odejmowanie
- int roznica = b - c;
- Console.WriteLine(roznica); // 6
- // mnożenie
- int mnozenie = a * b;
- Console.WriteLine(mnozenie); // 50
- // dzielenie
- int dzielenie = b / a;
- Console.WriteLine(dzielenie); // 2
- // dzielenie modulo (reszta z dzielenia)
- // b % c => 10 / 4 = 2 r. 2 => b % c = 10 % 4 = 2
- // 13 % 5 = 3 bo 13 / 5 = 2 r 3
- // 40 % 13 = 1 bo 40 / 13 = 3 r 1
- // 15 % 5 = 0 bo 15 / 5 = 3 r 0
- int modulo = b % c;
- Console.WriteLine(modulo);
- // a = 5, b = 10, c = 4
- int dzialanie = (a + b * c) / c;
- Console.WriteLine(dzialanie);
- // 21 % 8 = 5
- // 33 % 4 = 1
- // 17 % 10 = 7
- // 7 % 1 = 0
- Console.WriteLine("Podaj imię: ");
- //string imie = Console.ReadLine();
- // PARSOWANIE - zamiana tekstu na inny typ
- int wzrost = int.Parse("175");
- Console.WriteLine("Podaj wiek: ");
- //int wiek = int.Parse(Console.ReadLine());
- int x = 1;
- int y = 2;
- float z = x / y;
- Console.WriteLine(z);
- float x2 = x;
- // float = float / int
- float z2 = x2 / y;
- Console.WriteLine(z2);
- double potega = Math.Pow(2, 3); // 2 * 2 * 2 = 8
- double pierw_kwad = Math.Sqrt(9); // 3
- Console.ReadLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement