1 / 13

Instrukcja warunkowa i wyboru

Instrukcja warunkowa i wyboru. Instrukcja warunkowa - składnia. warunek. Tak. instrukcja. warunek. Tak. Nie. instrukcja 1. instrukcja 2. Operatory relacji:. Operatory logiczne: Warunek (operacja logiczna) zwraca wartość logiczną: True (logiczna jedynka, 1 dla C++)

thetis
Download Presentation

Instrukcja warunkowa i wyboru

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Instrukcja warunkowa i wyboru

  2. Instrukcja warunkowa - składnia warunek Tak instrukcja

  3. warunek Tak Nie instrukcja 1 instrukcja 2

  4. Operatory relacji:

  5. Operatory logiczne: Warunek (operacja logiczna) zwraca wartość logiczną: True (logiczna jedynka, 1 dla C++) False (logiczne zero, 0 dla C++)

  6. Koniunkcja (iloczyn logiczny) Alternatywa (suma logiczna) Negacja (zaprzeczenie)

  7. Przykłady: [C++] int k; cin>>k; if((k == 2) || (k == 10)) { cout<<"Liczba jest równa 2 lub 10"<<endl; } if((k > 2) && (k < 10)) { cout<<"Liczba jest większa od 2 i mniejsza od 10"<<endl; } if(k != 2) { cout<<"Liczba jest różna od 2"<<endl; } if(!k) { cout<<"Liczba jest równa zero"<<endl; }

  8. Wyrażenie warunkowe w języku C++: warunek ? instrukcja1 : instrukcja2; Przykłady: int i = 10; i!=10?cout<<1:cout<<0; return x % 2 == 0 ? "parzysta" : "nieparzysta";

  9. Instrukcja wyboru (instrukcja decyzyjna) Instrukcja umożliwiająca wybór instrukcji do wykonania spośród wielu opcji Instrukcja wyboru – składnia

  10. Przykłady: [C++] int k; cout<<"Podaj cyfrę"<<endl; cin>>k; switch(k) { case 0: cout<<"zero"<<endl; break; case 1: cout<<"jeden"<<endl; break; default: cout<<"to nie 0 i 1"<<endl; }

  11. Przykłady: [Pascal] var a:char; begin readln(a); case a of 'a'..'c': writeln('a lub b lub c'); 'd': writeln('d'); 'e','f': writeln('e lub f'); else writeln('inna niż a,b,c,d,e,f'); end; readln; end.

  12. Koniec

More Related