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.Runtime.InteropServices;
- using System.Text;
- using System.Threading.Tasks;
- namespace PowtorkaWiadomosci
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- // LICZBOWE
- // całkowite
- int wiek = 30;
- long masaWszechswiata = 100000000000000000L;
- // zmiennoprzecinkowe
- float srednia = 4.75f;
- double pi = 3.1415;
- decimal kursEuro = 4.3393M;
- // literowe
- char litera = 't';
- string imie = "Konrad";
- // logiczny
- bool czyFerie = false;
- // STAŁE
- const double PI = 3.1415;
- int x = 4;
- int y = 10;
- int suma = x + y;
- int roznica = x - y;
- int mnozenie = x * y;
- float dzielenie = (float) x / y;
- Console.WriteLine(dzielenie);
- int modulo = 10 % 4;
- x++;
- Console.WriteLine(x);
- y *= 2; // y = y * 2;
- Console.WriteLine(y);
- if (y > x)
- {
- Console.WriteLine("Y większe od X");
- }
- else if (x > y)
- {
- Console.WriteLine("X większe od Y");
- }
- else
- {
- Console.WriteLine("X i Y są równe");
- }
- for (int i = 0; i < 10; i++)
- {
- Console.WriteLine($"Witaj po raz {i}");
- }
- Console.WriteLine("Podaj hasło: ");
- string haslo = Console.ReadLine();
- while (haslo != "okoń")
- {
- Console.WriteLine("Podaj hasło: ");
- haslo = Console.ReadLine();
- }
- Console.WriteLine("Witaj w systemie");
- float kwad1 = PoleKwadratu(3);
- float kwad2 = PoleKwadratu(2.3456f);
- string[] imiona = { "Fabian", "Mateusz", "Oskar" };
- for (int i = 0; i < imiona.Length; i++)
- {
- PrzywitajSie(imiona[i]);
- }
- Console.ReadKey();
- }
- static float PoleKwadratu(float a)
- {
- if (a < 1)
- return -1;
- else
- return a * a;
- }
- static void PrzywitajSie(string imie)
- {
- Console.WriteLine($"Siemanko {imie}!");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement