1 / 6

Kordamine

Kordamine. Hea programm on. Kommenteeritud Ühtse stiili kasutusega Hästi struktureeritud Ilma liiasusteta Universaalne Modulaarne Efektiivne (kiired algoritmid) Lihtsasti loetav (anna kursavennale või -õele lugeda). Andmetüübid. Funktsioonid ja programmi struktuur.

Download Presentation

Kordamine

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. Kordamine

  2. Hea programm on • Kommenteeritud • Ühtse stiili kasutusega • Hästi struktureeritud • Ilma liiasusteta • Universaalne • Modulaarne • Efektiivne (kiired algoritmid) • Lihtsasti loetav (anna kursavennale või -õele lugeda)

  3. Andmetüübid

  4. Funktsioonid ja programmi struktuur #include <stdio.h>//Teegid ja makrod (define) < ? >< ? >(< ? >); intmain(){ intarv; scanf("%d", &arv); < ? >(< ? >); return 0; } < ? >< ? >(< ? >){ printf("Ytlesidarvu %d", number); }

  5. Tsüklid while do while for i= 0; while(………………) { printf("%d\n", i); …………………; } ……………………; do { printf("%d\n", i); i++; } ………………………; for(…………; …………; …………) { printf("%d\n", i); }

  6. Soojenduseks • Leida paarisarvuliste Fibonacci arvude jada summa • Fibonacci arve otsitakse kuni väärtuseni 4 000 000

More Related