53
Computer Programming and Problem Solving Ke shuwei

Computer Programming and Problem Solving

  • Upload
    barb

  • View
    66

  • Download
    0

Embed Size (px)

DESCRIPTION

Computer Programming and Problem Solving. Ke shuwei. What is the meaning of problem solve? How to solve it? What is computer programming? What is basic knowledge for solving?. Computer Problem. the problem about computer itself Blue Screen of Death (BSoD). Computer Problem. - PowerPoint PPT Presentation

Citation preview

Page 1: Computer Programming and Problem Solving

Computer Programming and Problem Solving

Ke shuwei

Page 2: Computer Programming and Problem Solving

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?

Page 3: Computer Programming and Problem Solving

Computer Problem

1. the problem about computer itself

Blue Screen of Death (BSoD)

Page 4: Computer Programming and Problem Solving
Page 5: Computer Programming and Problem Solving

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.

Page 6: Computer Programming and Problem Solving

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

Page 7: Computer Programming and Problem Solving

Computer Problem

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

Page 8: Computer Programming and Problem Solving

Computer problemIf 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 <stdio.h> main () { .....

..... }

Page 9: Computer Programming and Problem Solving

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

Page 10: Computer Programming and Problem Solving

What is the computer programming?

Utilize any language code to solve the problem in computer.

Page 11: Computer Programming and Problem Solving

C or Java or ...?

1. Same Target:solve the problem.

2. There are thousands of Languages,which one shoud pick?

Page 12: Computer Programming and Problem Solving

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?

Page 13: Computer Programming and Problem Solving

What can we do?

• Language is nothing more than a tool to solve the problem.

Learn basic knowledge for all languages

Page 14: Computer Programming and Problem Solving

Basic knowledgeProblem: 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.

Page 15: Computer Programming and Problem Solving

C

Page 16: Computer Programming and Problem Solving

Java

Page 17: Computer Programming and Problem Solving

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

Page 18: Computer Programming and Problem Solving

One more problem

• find all the prime number between 1 and 100.

Page 19: Computer Programming and Problem Solving

C

Page 20: Computer Programming and Problem Solving

Java

Page 21: Computer Programming and Problem Solving

Connection

• if control statements• for conrol statements• operator ( %, = , <= ..)

• Syntax is different• Algorithm(logic) is different

Page 22: Computer Programming and Problem Solving

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.

Page 23: Computer Programming and Problem Solving

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

Page 24: Computer Programming and Problem Solving

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.

Page 25: Computer Programming and Problem Solving

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

Page 26: Computer Programming and Problem Solving

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.

Page 27: Computer Programming and Problem Solving

An example

Page 28: Computer Programming and Problem Solving

Code convention

Page 29: Computer Programming and Problem Solving

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?)

Page 30: Computer Programming and Problem Solving

If..else..

if (condition){

CS1;CS2;...

}/* end of if */

Next statement;

if (condition) CS;

Next statement;

if (condition) CS;

Next statement;

Braces

Page 31: Computer Programming and Problem Solving

If ....else...

if (condition){

CS1;CS2;...

}else{

ES1;ES2;...

} /* end of if */

Next statement;

Page 32: Computer Programming and Problem Solving

Nested if.. else ..if (a > b){

if ( a > c)a largest; elsec largest;

}else{

if ( b > c)b largest;

elsec laregest;

} /* end of if */

Next statement;

Page 33: Computer Programming and Problem Solving

Nested if.. else ..int a = 5, b = 10, c = 9;if (a > b)

if ( a > c)a largest; elsec 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; elsec largest;

else if ( b > c)b largest;

elsed laregest;

Next statement;

OUTPUT: d largest

Page 34: Computer Programming and Problem Solving

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

Page 35: Computer Programming and Problem Solving
Page 36: Computer Programming and Problem Solving

Nested

if (a > b)if ( a > c)

a largest; elsec largest;

elseif ( b > c)

b largest;else

c laregest;

Next statement;

Every else corresponds if which is cloest to it

Page 37: Computer Programming and Problem Solving

Nestedint a = 5, b = 4, c = 6;if (a > b)

if ( a > c)printf(“1”);

elseprintf(“2”);

Next statement;

OUTPUT: 2

int a = 5, b = 4, c = 6;if (a > b){

if ( a > c)printf(“1”);

}elseprintf(“2”);

Next statement;

OUTPUT:

Page 38: Computer Programming and Problem Solving

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

Page 39: Computer Programming and Problem Solving

isPrime

Page 40: Computer Programming and Problem Solving

Relational and logical operators

•Operator Meaning

< less than<= less than or equal to> grater than>= grater than or equal to== equal to!= not equal to|| or&& and

Page 41: Computer Programming and Problem Solving

Relational Operator Meaning

== equal to

Assignment Operator Meaning

= 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

Page 42: Computer Programming and Problem Solving

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");

Page 43: Computer Programming and Problem Solving

compound conditionint a = 5, b = 8, c = 9, d = 10;

if ( a < b && a < c && a > 10) printf(“1”);

elseprintf(“2”);

if( true && true && false) = false

if( true && true && true) = ture

if( true || false|| false) = true

if( false|| false || false) = false

Page 44: Computer Programming and Problem Solving

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");

Page 45: Computer Programming and Problem Solving

Precedence of c operatorOperator category Operators Precedence

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

Page 46: Computer Programming and Problem Solving

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

Output: 2

Page 47: Computer Programming and Problem Solving

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

Output: 1

Page 48: Computer Programming and Problem Solving

Conditional Operator

<relation expression> ? <value1> : <value2>

if ( relation expression) return value1;

else return value2;

if ( relation expression)statement1;

else statement2;

<relation expression> ? <statement1>:<statement2>

Page 49: Computer Programming and Problem Solving
Page 50: Computer Programming and Problem Solving
Page 51: Computer Programming and Problem Solving

ExampleC = 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);

Page 52: Computer Programming and Problem Solving

Thank you!

http://wwww.cpps2010.info

[email protected]

Page 53: Computer Programming and Problem Solving

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