Advertisement
drakon-firestone

Untitled

Jan 20th, 2024
879
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.56 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.InteropServices;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace PowtorkaWiadomosci
  9. {
  10.     internal class Program
  11.     {
  12.         static void Main(string[] args)
  13.         {
  14.             // LICZBOWE
  15.             // całkowite
  16.             int wiek = 30;
  17.             long masaWszechswiata = 100000000000000000L;
  18.  
  19.             // zmiennoprzecinkowe
  20.             float srednia = 4.75f;
  21.             double pi = 3.1415;
  22.             decimal kursEuro = 4.3393M;
  23.  
  24.             // literowe
  25.             char litera = 't';
  26.             string imie = "Konrad";
  27.  
  28.             // logiczny
  29.             bool czyFerie = false;
  30.  
  31.  
  32.             // STAŁE
  33.             const double PI = 3.1415;
  34.  
  35.             int x = 4;
  36.             int y = 10;
  37.  
  38.             int suma = x + y;
  39.             int roznica = x - y;
  40.             int mnozenie = x * y;
  41.             float dzielenie = (float) x / y;
  42.             Console.WriteLine(dzielenie);
  43.  
  44.             int modulo = 10 % 4;
  45.  
  46.             x++;
  47.             Console.WriteLine(x);
  48.  
  49.             y *= 2; // y = y * 2;
  50.             Console.WriteLine(y);
  51.  
  52.  
  53.             if (y > x)
  54.             {
  55.                 Console.WriteLine("Y większe od X");
  56.             }
  57.             else if (x > y)
  58.             {
  59.                 Console.WriteLine("X większe od Y");
  60.             }
  61.             else
  62.             {
  63.                 Console.WriteLine("X i Y są równe");
  64.             }
  65.  
  66.             for (int i = 0; i < 10; i++)
  67.             {
  68.                 Console.WriteLine($"Witaj po raz {i}");
  69.             }
  70.  
  71.             Console.WriteLine("Podaj hasło: ");
  72.             string haslo = Console.ReadLine();
  73.             while (haslo != "okoń")
  74.             {
  75.                 Console.WriteLine("Podaj hasło: ");
  76.                 haslo = Console.ReadLine();
  77.             }
  78.             Console.WriteLine("Witaj w systemie");
  79.  
  80.             float kwad1 = PoleKwadratu(3);
  81.             float kwad2 = PoleKwadratu(2.3456f);
  82.  
  83.             string[] imiona = { "Fabian", "Mateusz", "Oskar" };
  84.  
  85.             for (int i = 0; i < imiona.Length; i++)
  86.             {
  87.                 PrzywitajSie(imiona[i]);
  88.             }
  89.  
  90.             Console.ReadKey();
  91.         }
  92.  
  93.  
  94.         static float PoleKwadratu(float a)
  95.         {
  96.             if (a < 1)
  97.                 return -1;
  98.             else
  99.                 return a * a;
  100.         }
  101.  
  102.         static void PrzywitajSie(string imie)
  103.         {
  104.             Console.WriteLine($"Siemanko {imie}!");
  105.         }
  106.     }
  107. }
  108.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement