Presentation is loading. Please wait.

Presentation is loading. Please wait.

Computer Programming and Problem Solving Ke shuwei.

Similar presentations


Presentation on theme: "Computer Programming and Problem Solving Ke shuwei."— Presentation transcript:

1 Computer Programming and Problem Solving Ke shuwei

2 1.What is the meaning of problem solve? 2.How to solve it? 3.What is computer programming? 4.What is basic knowledge for solving?

3 Computer Problem 1.the problem about computer itself Blue Screen of Death (BSoD)

4

5 Computer Problem 2.Utilize computer to solve the real world problem.The real world problem is called Computer Problem. This is the meaning of Computer problem in our class we have to solve.

6 Computer Problem Problem: find the largest number between three number(12, 15, 18) Human:a primary student knows it is 18. Computer: zzzZZZZZ~~~~~~ NO IDEA

7 Computer Problem The computer can not solve the problem which a primary student can solve.why we need it?

8 Computer problem If we assume the computer can solve this problem. i.e,it can check a number is prime or composite. Problem: find all the prime number between 1 and 10000? Human: yes,i can. But i think it will take 5 hours or more. Computer: too easy,only 10 secs i need. #include main () {..... }

9 How to utilize computer to solve problem I know C language,i can write down C code to solve it. This is the only way to solve it? Nope,I know Java. I can write down Java code to solve it. C++, Ruby.....

10 What is the computer programming? Utilize any language code to solve the problem in computer.

11 C or Java or...? 1.Same Target:solve the problem. 2.There are thousands of Languages,which one shoud pick?

12 How to become a good programmer? Do i need to know every language? – Too much knowledge. – How can i learn all of them? – i only can live 100 years. ^-^ What can we do?

13 Language is nothing more than a tool to solve the problem. Learn basic knowledge for all languages

14 Basic knowledge Problem: find the largest number between three numbers(12, 15, 18) 12 < 15, 15 < 18, 12 < 18 Using basci knowledge in different language to solve problem.

15 C

16 Java

17 Connection Syntax is different if.. else if... else.. is same. Operator is same ( >, (),{}) Declaration is same(int a,...) Algorithm(rules) is same – use folwchart to describe algorithm

18 One more problem find all the prime number between 1 and 100.

19 C

20 Java

21 Connection if control statements for conrol statements operator ( %, =, <=..) Syntax is different Algorithm(logic) is different

22 What we have to learn for all programming lanuage? 1.Algorithm (the method to slove problem) if you want to find all prime number,first, you should know what is prime number.Then,using different algorithm to solve it.

23 What we have to learn for all programming lanuage? 2. Basic operator is almost same in all language (>, >=, !=, &&, &.. 1 > 2 ? 1 : 2) 3.Control statements if... eles if..else for... while... do... While.. all nested control statements

24 Why? If we have learned one language,we can easy to learn other languages.Because the logic of (method) solving problem is same. So far, we have taken more than one month to finish three assignments using C language.But I belive that all of you just spent one day to learn syntax of java,then you can finish those assignments less than one day easily.

25 How? Be patient to learn basic knowledge,do not care about that i do not know java,ruby.. In our class,we using c. Let us C

26 C_code_Convention Code conventions are important to programmers for a number of reasons: – 80% of the lifetime cost of a piece of software goes to maintenance. – Hardly any software is maintained for its whole life by the original author. – Code conventions improve the readability of the software, allowing engineers to understand new code more quickly and thoroughly.

27 An example

28 Code convention

29 Basic convention 1.write down comments 2.one statement one line 3.indent every substatement 4.choose variable name close to its meaning ( a or isPrime?)

30 If..else.. if (condition) { CS1; CS2;... }/* end of if */ Next statement; if (condition) { CS1; CS2;... }/* end of if */ Next statement; if (condition) CS; Next statement; if (condition) CS; Next statement; Braces

31 If....else... if (condition) { CS1; CS2;... } else { ES1; ES2;... } /* end of if */ Next statement; if (condition) { CS1; CS2;... } else { ES1; ES2;... } /* end of if */ Next statement;

32 Nested if.. else.. if (a > b) { if ( a > c) a largest;else c largest; } else { if ( b > c) b largest; else c laregest; } /* end of if */ Next statement; if (a > b) { if ( a > c) a largest;else c largest; } else { if ( b > c) b largest; else c laregest; } /* end of if */ Next statement;

33 Nested if.. else.. int a = 5, b = 10, c = 9; if (a > b) if ( a > c) a largest;else c largest; else if ( b > c) b largest; else d laregest; Next statement; int a = 5, b = 10, c = 9; if (a > b) if ( a > c) a largest;else c largest; else if ( b > c) b largest; else d laregest; Next statement; int a = 5, b = 10, c = 9; if (a > b) if ( a > c) a largest;else c largest; else if ( b > c) b largest; else d laregest; Next statement; int a = 5, b = 10, c = 9; if (a > b) if ( a > c) a largest;else c largest; else if ( b > c) b largest; else d laregest; Next statement; OUTPUT: d largest

34 int a = 5, b = 8, c = 9, d = 10; if ( a > b) printf("1"); else if ( a > c) printf("2"); else if ( a > d) printf("3"); else printf("4"); int a = 5, b = 8, c = 9, d = 10; if ( a > b) printf("1"); else if ( a > c) printf("2"); else if ( a > d) printf("3"); else printf("4"); OUTPUT: 4

35

36 Nested if (a > b) if ( a > c) a largest;else c largest; else if ( b > c) b largest; else c laregest; Next statement; if (a > b) if ( a > c) a largest;else c largest; else if ( b > c) b largest; else c laregest; Next statement; Every else corresponds if which is cloest to it

37 Nested int a = 5, b = 4, c = 6; if (a > b) if ( a > c) printf(“1”); else printf(“2”); Next statement; int a = 5, b = 4, c = 6; if (a > b) if ( a > c) printf(“1”); else printf(“2”); Next statement; OUTPUT: 2 int a = 5, b = 4, c = 6; if (a > b) { if ( a > c) printf(“1”); } else printf(“2”); Next statement; int a = 5, b = 4, c = 6; if (a > b) { if ( a > c) printf(“1”); } else printf(“2”); Next statement; OUTPUT:

38 Tips In C,true is any nonzero value and false is zero. if (1) printf("1"); if (2) printf("2"); If (!2) printf("3"); if (0) printf("4"); If (!0) printf ("5"); Output:125

39 isPrime

40 Relational and logical operators OperatorMeaning <less than <=less than or equal to >grater than >=grater than or equal to ==equal to !=not equal to ||or &&and

41 Relational OperatorMeaning ==equal to Assignment OperatorMeaning = assign value a == b means: a equal to b then return ture else return false a = b means: assign the value of b to a if ( a == b) correct  if ( a = b) incorrect 

42 compound condition int a = 5, b = 8, c = 9, d = 10; if ( a > b) printf("1"); else if ( a > c) printf("2"); else if ( a > d) printf("3"); else printf("4");

43 compound condition int a = 5, b = 8, c = 9, d = 10; if ( a 10) printf(“1”); else printf(“2”); if( true && true && false) = false if( true && true && true) = ture if( true || false|| false) = true if( false|| false || false) = false

44 compound condition if ( 1 && 2 && 3) printf("1"); else printf("2"); if ( 1 && !2 && 3) printf("1"); else printf("2"); if ( 0 || 2 && 3 && 4) printf("1"); else printf("2"); if ( 0 || 2 && 3 && 0) printf("1"); else printf("2");

45 Precedence of c operator Operator categoryOperatorsPrecedence Parentheses,brace( ), [ ]1 Unary operator-,++, --, !, `, &2 Multiplicative operators*, /, %3 Additive operator+, -4 Shift operators >5 Relation operators, >=6 Equality operator==, !=7 Bitwise operator &, ^, |8 Logical operators&&,||9 Conditional operators ?, :10 Assignment operators =,+=,-=,*=, /=,%= &=, ^=, |=, >= 11 Comma operator,12

46 if ( 10 - 9 -1 ) printf("1"); else printf("2"); Output: 2

47 if ( 10 – (9 -1) ) printf("1"); else printf("2"); Output: 1

48 Conditional Operator ? : if ( relation expression) return value1; else return value2; if ( relation expression) statement1; else statement2; ? :

49

50

51 Example C = 5 < 4 ? 5 : 4; 3 1 2 2 precedence operator Return value 5 > 4 ? printf("1") : printf("2"); statemment max = a > b ? ( a > c ? a : c) : ( b > c ? b :c);

52 Thank you! http://wwww.cpps2010.info shuwei.ke@gmail.com

53 Assignment 1.Find the largest number in four numbers.Draw flawchart.(10,2,3,20) 2.Find the largest number in four numbers.(using conditional operator) 3.Enter the month,printout the season 11,12,1 -- winter 2, 3, 4 --- spring 5, 6, 7 --- summer 8, 9, 10 -- autumn 4.Enter the marks,printout grade. 90 - 100 A 80 – 90 B 70 – 80 C 60 – 70 D below 60 fail


Download ppt "Computer Programming and Problem Solving Ke shuwei."

Similar presentations


Ads by Google