1 / 34

Yap ısal Programlama

Yap ısal Programlama. Y üksek Düzeyli Diller in Gelişim Süreci 1954-1957, Fortran (by IBM) , for creating scientific and engineering applications , first commercial high-level programming lang. 1959, Cobol, Commercial applications requiring manipulation of large amounts of data

nmatthews
Télécharger la présentation

Yap ısal Programlama

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. Yapısal Programlama • Yüksek Düzeyli Dillerin Gelişim Süreci • 1954-1957, Fortran (by IBM), for creating scientific and engineering applications, first commercial high-level programming lang. • 1959, Cobol, Commercial applications requiring manipulation of large amounts of data • Late 1960s, Pascal, for academic use • 1967, BCPL, for writing OSs, software, compilers • 1970, B, early versions of UNIX • 1973, C, UNIX, major operating systems • 1975, BASIC • 1980s, C++, object-oriented programming (OOP) • 1995, Java, create dynamic content for Web pages and for consumer devices • 2000, C#, designed specifically for the .NET platform

  2. First, go to steps 8 and 9. Drive one mile straight. Drive one mile straight again. Drive one mile straight again. You will see the store on your right. If the store is closed, go to step 11. Stop and get out of your car. Go to step 13. Drive straight to Harvard Avenue. Turn right at 51st Street. Go to step 2. Turn left on Yale Street. Go four miles straight and you will see another grocery on your left. Go in and shop. Drive straight to Harvard Avenue. Turn right at 51st Street. For the next three miles, keep driving straight. You will see the grocery on your right. If the grocery is open, go inside. If the grocery is closed, turn left on Yale Street. Go four miles straight and you will see another grocery on your left. Go inside whichever grocery is open and buy groceries. list of directions given to you when you ask how to get to the local grocery store

  3. Benefits of Structure • Less code equals more power • Make the code easier to read and follow • Enable you to break your code into logical parts • Make it easier to spot where errors are • Make reusing code easier

  4. The Constructs of Structured Programming • Sequence (Sıra) • Decision (Karar) (also called selection) • Looping (Döngü) (also called repetition or iteration) • As long as a programming language supports these three constructs, you can write structured programs. • An unstructured program contains lots of branching.

  5. Sequence

  6. Decision

  7. Looping

  8. Structured Programming = Yapısal Programlama • Input Process  Output Sequence (Functions) Decision (Conditionals) Looping (Loops)

  9. Basic C++ Code Structure // C++ code templatecomment #include <iostream.h>header file (support for inputs and outputs) #include <string.h>header file (support for string handling) void main()a function { // Code goes here!!!! }

  10. Functions • Functions are the basic subdivision of code. • Just as statements are the equivalent of sentences, functions are the equivalent of paragraphs. • To move between functions you use calls.

  11. Functions • Main function • Functions called main have a special meaning in C++, they are functions that will be automaticallyrun. // C++ code template #include <iostream.h> void main() { cout << "Hello, World!" << endl; }

  12. Statement cout instruction << insertion operator "Hello, World!"string to be displayed << insertion operator endl insert a new line ; statement closing cout << "Hello, World!" << endl;

  13. a function can do more than one thing // C++ code template #include <iostream.h> void main() { cout << "Hello, World!" << endl; cout << "How are you?" << endl; }

  14. More functions #include <iostream.h> void hello() { cout << "Hello, World!" << endl; } void hello2() { cout << "Hello, World, MK II!" << endl; } void main() { cout << "main function" << endl; }

  15. #include <iostream.h> void hello() { cout << "Hello, World!" << endl; } void hello2() { cout << "Hello, World, MK II!" << endl; } void main() { cout << "main function" << endl; hello(); hello2; }

  16. Remember to have the function appear before you call it #include <iostream.h> void hello() { cout << "Hello, World!" << endl; hello2(); } void hello2() { cout << "Hello, World, MK II!" << endl; } void main() { cout << "main function" << endl; hello(); }

  17. #include <iostream.h> void hello() { cout << "main function" << endl; } void main() { cout << "main function" << endl; } #include <iostream.h> void main() { cout << "main function" << endl; hello(); hello2(); } void hello() { cout << "Hello, World!" << endl; hello2(); } void hello2() { cout << "Hello, World, MK II!" << endl; } 3 Örneği inceleyiniz. Yanlış olanlar ne?

  18. Conditionals (Karar yapıları, şartlı yapılar) • Conditionals revolve around answers to questions. • true/ false • yes/ no • For breakfast, would you rather have toast or cereal? • Toast • Cereal • Toast & Cereal • None • Conditionals revolve around making a decision

  19. Conditionals in C++ if (condition) { // do statements here if the condition is true } else { // do these statements if the condition is false };

  20. Loops (Döngü yapıları) • the same piece ofcode a number of times • Bir komutun (ya da komut bloğunun) belirli sayıda işletilmesi • Bir komutun (ya da komut bloğunun) belirli bir şart gerçekleştiği sürece (bir ön teste bağlı olarak) işletilmesi • Bir komutun (ya da komut bloğunun) belirli bir şart gerçekleşene kadar (bir son teste bağlı olarak) işletilmesi

  21. Bir komutun (ya da komut bloğunun) belirli sayıda işletilmesi

  22. C++ “for” yapısı: Örnek 1 for ( <initialisation> ; <terminating condition> ; <increment> ) { // statement (or block of statements) }

  23. C++ “for” yapısı: Örnek 2

  24. Bir komutun (ya da komut bloğunun) belirli bir şart gerçekleştiği sürece (bir ön teste bağlı olarak) işletilmesi

  25. C++ “while” yapısı

  26. Bir komutun (ya da komut bloğunun) belirli bir şart gerçekleşene kadar (bir son teste bağlı olarak) işletilmesi

  27. C++ “do while” yapısı

  28. Infinite Loops

More Related