Sunum yükleniyor. Lütfen bekleyiniz

Sunum yükleniyor. Lütfen bekleyiniz

Yapısal Programlama Yüksek Düzeyli Dillerin Gelişim Süreci

Benzer bir sunumlar


... konulu sunumlar: "Yapısal Programlama Yüksek Düzeyli Dillerin Gelişim Süreci"— Sunum transkripti:

1 Yapısal Programlama Yüksek Düzeyli Dillerin Gelişim Süreci
, 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 list of directions given to you when you ask how to get to the local grocery store
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.

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 template comment #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 // C++ code template
Functions called main have a special meaning in C++, they are functions that will be automatically run. // C++ code template #include <iostream.h> void main() { cout << "Hello, World!" << endl; }

12 Statement cout instruction << insertion operator
"Hello, World!" string to be displayed 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 3 Örneği inceleyiniz. Yanlış olanlar ne?
#include <iostream.h> void hello() { cout << "main function" << endl; } void main() #include <iostream.h> void main() { cout << "main function" << endl; hello(); hello2(); } void hello() cout << "Hello, World!" << endl; void hello2() cout << "Hello, World, MK II!" << endl;

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

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

21

22

23

24

25

26 Loops (Döngü yapıları)
the same piece of code 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

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

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

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

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

31 C++ “while” yapısı

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

33 C++ “do while” yapısı

34 Infinite Loops


"Yapısal Programlama Yüksek Düzeyli Dillerin Gelişim Süreci" indir ppt

Benzer bir sunumlar


Google Reklamları