1. 과제 ¶
- 세개의 정수를 받아들여, 그 수를 모두 더한 후 7를 더하면 얼마인지 출력하는 프로그램
- Input three integers: 2 3 7
- The sum of your integers plus 7 is 19
- Input three integers: 2 3 7
2.1.1. 가르친 내용(fact) ¶
- 프로젝트 만들기 복습
- printf 사용법
- %d: decimal integer
- %c: character
- %.2f: 소수점 둘째 자리까지 float 출력
- 소수점 셋째 자리에서 반올림
- 소수점 셋째 자리에서 반올림
- %d: decimal integer
- escape character
- \n: 줄바꿈
- \t: 탭
- \", \': ",'
- \\: \
- \n: 줄바꿈
- 정수형 data type: int, char
- 실수형 data type: float, double