NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace instrukcja_warunkowa
{
class Program
{
private static void warunkowa()
{
Console.Clear();
int a = 6;
int b = 5;
if (a > b)
{
Console.WriteLine("{0} jest większe niż {1}", a, b);
}
else
{
Console.WriteLine("{0} jest mniejsza lub równa {1}", b, a);
}
}

private static void warunkowa11(double x, double y)
{
Console.Clear();
if (x > y)
{
Console.WriteLine("{0} jest większe niż {1}", x, y);
}
else if (x == y)
{
Console.WriteLine("{0} jest równe {1}", x, y);
}
else
{
Console.WriteLine("{0} jest mniejsza niż {1}", x, y);
}
}

private static void warunkowa1()
{
Console.Clear();
double x, y;
Console.Write("Podaj liczbę x: ");
String s = Console.ReadLine();
x = double.Parse(s);
Console.Write("Podaj liczbę y: ");
String p = Console.ReadLine();
y = double.Parse(p);
warunkowa11(x, y);
}

private static void warunkowa2()
{
Console.Clear();
double t1, t2, t3;
Console.Write("Podaj 1 bok ");
String ts1 = Console.ReadLine();
t1 = double.Parse(ts1);
Console.Write("Podaj 2 bok ");
String ts2 = Console.ReadLine();
t2 = double.Parse(ts2);
Console.Write("Podaj podstawę ");
String ts3 = Console.ReadLine();
t3 = double.Parse(ts3);

warunkowa2sprawdzenenie(t1, t2, t3);

}

private static void warunkowa2sprawdzenenie(double t1, double t2, double t3)
{
Console.Clear();
if (t1 + t2 > t3)
{
Console.WriteLine("Można stwrzyć trójkąt");
}
else
{
Console.WriteLine("Nie można stworzyć trójkąta");
}
Console.WriteLine();
Console.ReadKey();
warunkowa2pytanie(t1, t2, t3);
}

private static void warunkowa2pytanie(double t1, double t2, double t3)
{
Console.Clear();
double to1;
Console.WriteLine("Czy chcesz sprawdzaić czy trójkąt jest równoboczny - 1 / 2? ");
Console.WriteLine("1. Chcę sprawdzić");
Console.WriteLine("2. Nie chcę sprawdzić");
String sto = Console.ReadLine();
to1 = double.Parse(sto);
Console.WriteLine("1. Chcę sprawdzić");
Console.WriteLine("2. Nie chcę sprawdzić");
warunkowa2pytanieif(t1, t2, t3, to1);
}

private static void warunkowa2pytanieif(double t1, double t2, double t3, double to1)
{
if (to1 == 1)
{
warunkowa2rownoboczny(t1, t2, t3);
}
else
{
Console.WriteLine("Koniec");
}
}
private static void warunkowa2rownoboczny(double t1, double t2, double t3)
{
Console.Clear();
if (t1 == t2 && t2 == t3)
{
Console.WriteLine("Trójkąt jest równoboczny");
}
else
{
Console.WriteLine("Trójkąt nie jest równoboczny");
}
}

private static void warunkowa3()
{
Console.Clear();
double liczba3;
Console.WriteLine("Podaj liczbę");
String swar3 = Console.ReadLine();
liczba3 = double.Parse(swar3);

warunkowa3if(liczba3);
}

private static void warunkowa3if(double liczba3)
{
if (liczba3 < 10)
{
Console.WriteLine("{0} jest mniejsza od 10", liczba3);
}

else if (liczba3 < 20)
{
Console.WriteLine("{0} jest mniejsza od 20", liczba3);
}

else if (liczba3 < 30)
{
Console.WriteLine("{0} jest mniejsza od 30", liczba3);
}

else
{
Console.WriteLine("{0} jest większą od 30", liczba3);
}
}

private static void warunkowa4()
{
Console.Clear();
double liczba3;
Console.WriteLine("Podaj liczbę");
String swar3 = Console.ReadLine();
liczba3 = double.Parse(swar3);

warunkowa4case(liczba3);
}

private static void warunkowa4case(double n)
{
switch (n)
{
case var liczba3 when n < 10:

Console.WriteLine("{0} jest mniejsza od 10", n);
break;

case var liczba3 when n < 20:

Console.WriteLine("{0} jest mniejsza od 20", n);
break;

case var liczba3 when n < 30:

Console.WriteLine("{0} jest mniejsza od 30", n);
break;

default:

Console.WriteLine("{0} jest większą od 30", n);
return;

}
}

/*private static void data()
{
Console.Clear();
DateTime dt = DateTime.Today;
Console.WriteLine(dt);
Console.WriteLine(dt.DayOfWeek);
datapytanie(dt.DayOfWeek);

}

private static void datapytanie(d)
{
Console.Clear();
switch (d)
{
case var dt.DayOfWeek when d == "Monday" :
Console.WriteLine("Poniedziałek");
break;

case var dt.DayOfWeek when d == :
Console.WriteLine("Wtorek");
break;

case var dt.DayOfWeek when d == Monday :
Console.WriteLine("Poniedziałek");
break;

case var dt.DayOfWeek when d == Monday :
Console.WriteLine("Poniedziałek");
break;

case var dt.DayOfWeek when d == Monday :
Console.WriteLine("Poniedziałek");
break;
}
}
*/

private static void imie()
{
Console.Clear();
Console.WriteLine("Podaj imie ");
String imie = Console.ReadLine();
imieif(imie);
}

private static void imieif (string imie)
{
if (imie == "Jan")
{
Console.WriteLine("Jestes Jan");
}
else if (imie == "Kuba")
{
Console.WriteLine("Czesc Kuba");
}
else if (imie == "Oskar")
{
Console.WriteLine("Czesc Oskar");
}
else
{
Console.WriteLine("Nie znam cie");
}
}

private static void petlawhile ()
{
int i = 1;
while (i <= 5)
{
Console.WriteLine("i ma wartość: {0}", i);
i++;
}
Console.ReadKey();
petlawhile2();
}

private static void petlawhile2()
{
int j = 1;
do
{
Console.WriteLine("j ma wartość: {0}", j);
j++;
}
while (j <= 5);
}

static void Main(string[] args)
{
Console.Clear();
Console.WriteLine("1 - pierwszy");
Console.WriteLine("2 - działanie");
Console.WriteLine("3 - trójkąt");
Console.WriteLine("4 - if");
Console.WriteLine("5 - case");
Console.WriteLine("6 - date - nie działa");
Console.WriteLine("7 - imie");
Console.WriteLine("8 - pętla while");
Console.WriteLine("0 - koniec");
Console.Write("Podaj który program chcesz uruchomić: ");
String aa = Console.ReadLine();
double program = double.Parse(aa);

if (program == 1)
{
warunkowa();
}
else if (program == 2)
{
warunkowa1();
}
else if (program == 3)
{
warunkowa2();
}
else if (program == 4)
{
warunkowa3();
}
else if (program == 5)
{
warunkowa4();
}
/*else if (program == 6)
{
data();
}*/
else if (program == 7)
{
imie();
}
else if (program == 8)
{
petlawhile();
}
else if (program == 0)
{

}
else
{
Console.WriteLine("Ponów wybór");
}
}
}
}

/* podaj liczbę jako argument i wypisz argument stosownie od zależąności
* Liczba mniejsza niż 10
* Liczba mniejsz niż 20
* Liczba mniejsza niż 30
* Liczba jest większa lub równa
*/
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.