1 / 11

Koşul/Karar Komutları

Koşul/Karar Komutları. Yard . Doç.Dr . Cihad DEMİRLİ. Sunuda yer alan görseller http://www.cagataycebi.com/ adresinden alınmıştır. Operatörler. Koşul/Karar Komutları if. if ( koşul ) { komut(lar) ………………… ………………… }. Koşul/Karar Komutları if -else. if ( koşul ) { komut( lar ) …………………

valora
Download Presentation

Koşul/Karar Komutları

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. Koşul/Karar Komutları Yard.Doç.Dr. Cihad DEMİRLİ Sunuda yer alan görseller http://www.cagataycebi.com/ adresinden alınmıştır.

  2. Operatörler

  3. Koşul/Karar Komutlarıif if (koşul) { komut(lar) ………………… ………………… }

  4. Koşul/Karar Komutlarıif-else if( koşul) { komut(lar) ………………… ………………… } else { komut(lar) ………………… ………………… }

  5. Koşul/Karar Komutları? Koşul ? if_komut(lar) : else_komutlar;

  6. Koşul/Karar Komutu (Örnek 1)?

  7. Koşul/Karar Komutlarıif-else if • if( koşul 1) { • komut(lar) 1 • } else if( koşul 2) • {komut(lar) 2 • } • . . . • else if( koşul n) { • komut(lar) n • } • else { komut(lar) n • }

  8. Koşul/Karar Komutu (Örnek 2)if ve else if

  9. Koşul/Karar Komutları swicth - case switch( degisken) { case sabit1: komut(lar); break; case sabit2: komut(lar);break; . . . case sabitN: komut(lar); break; default: komut(lar); }

  10. Koşul/Karar Komutu (Örnek 3) swicth - case

  11. devam edecek…

More Related