1 / 10

Bölüm 3

Bölüm 3. ANSI C Komutları. Seçme Komutları: if. if (koşul1) { <koşul1 komutları> } else if (koşul2) { <koşul1 komutları> } else { <diğer koşullara dair komutlar> }. if Komutu Kullanım Örneği. if (18 <= yas <= 35) if (cinsiyet == ‘E’) printf(“Basvurunuz kabul edildi”); else

Download Presentation

Bölüm 3

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. Bölüm 3 ANSI C Komutları

  2. Seçme Komutları: if if (koşul1) { <koşul1 komutları> } else if (koşul2) { <koşul1 komutları> } else { <diğer koşullara dair komutlar> }

  3. if Komutu Kullanım Örneği if (18 <= yas <= 35) if (cinsiyet == ‘E’) printf(“Basvurunuz kabul edildi”); else printf(“Yaş sınırından ötürü geçersiz başvuru !”); if (18 <= yas && yas <= 35) { if (cinsiyet == ‘E’) printf(“Basvurunuz kabul edildi”); } else printf(“Yaş sınırından ötürü geçersiz başvuru !”);

  4. Seçme Komutları: switch switch (<denetim ifadesi>) { <etiket kümesi1(label set)> <komutlar> break; <etiket kümesi2 > <komutlar> break; default: <komutlar> }

  5. switch Komutu Kullanım Örneği /* Öğrenci sayısına bağlı olarak, sınıfın durumunu ekrana yaz */ switch (ogrenciSayisi) { case 1: printf("AZ\n"); break; case 2: case 3: printf("YETERLI\n"); break; case 4: case 5: printf("COK\n"); break; default: printf("ARALIK DISINDA\n"); }

  6. Döngü Komutları: while while (<koşul>) { <komut kümesi> }

  7. while Komutu Kullanım Örneği denetim = 0; while (denetim < 10) { printf("%d. Adim Islemleri : \n", denetim); /* Döngü içi işlemler */ denetim += 1; }

  8. Döngü Komutları: for for ( <döngü değişkeni ilk değer atama>; <döngü, devam şartı>; <döngü değişkeni günleme> ) { <Döngü içi komut kümesi> }

  9. Artırım (increment) ve Eksiltme (decrement) Komutları x++ => x = x + 1; x-- => x = x - 1; (Kod örnekleri, örnek durumlar)

  10. Döngü Komutları: do-while do { <komut kümesi> } while (<koşul>)

More Related