Presentation is loading. Please wait.

Presentation is loading. Please wait.

실 습 2.

Similar presentations


Presentation on theme: "실 습 2."— Presentation transcript:

1 실 습 2

2 실습 2-1 다음과 같은 사칙 연산을 수행하는 프로그램 코드를 작성 하시오. 변수 설명 :
실습 2-1 다음과 같은 사칙 연산을 수행하는 프로그램 코드를 작성 하시오. #include <stdio.h> int main() { int f_num, s_num, ans, rem; 상세한 코드 생략. return 0; } 변수 설명 : f_num : 첫 번째 수를 저장하는 변수 f_num : 두 번째 수를 저장하는 변수 ans : 연산 결과를 저장하는 변수 rem : 나눗셈의 나머지를 저장하는 변수

3 실습 2-2 Write an interactive program that converts pounds and ounces to kilograms and grams. Use symbolic constants that are defined before main( ). #include < stdio.h> int main(void) { double a, po, oun, i; 상세한 코드 생략 return 0; } 1 POUND는 약 0.453kg 1 OUNCE는 약28.35g

4 실습 2-3 아래 프로그램 코드의 동작을 설명하는 주석을 작성하시오. #include <stdio.h>
실습 2-3 아래 프로그램 코드의 동작을 설명하는 주석을 작성하시오. #include <stdio.h> int main() { int i = 3, j = 5; int ans = 0; ans += ++i + j--; ans += i++ - j++; ans += i-- * ++j; printf(" answer = %d \n i = %d \n j = %d \n", ans, i, j); return 0; }


Download ppt "실 습 2."

Similar presentations


Ads by Google