728x90
01.
#include <stdio.h>
int main()
{
printf("%d %d", 021, 0x1b);
return 0;
}
02.
#include <stdio.h>
int main()
{
int point1 = 88;
int point2 = 92;
int total = point1 + point2;
printf("중간: %d 기말: %d 합: %d", point1, point2, total);
return 0;
}
03.
#include <stdio.h>
int main()
{
printf("%d %d %d\n", 8, 010, 0x8);
printf("%d %d %d\n", 9, 011, 0x9);
printf("%d %d %d\n", 10, 012, 0xa);
printf("%d %d %d\n", 11, 013, 0xb);
printf("%d %d %d\n", 12, 014, 0xc);
printf("%d %d %d\n", 13, 015, 0xd);
printf("%d %d %d\n", 14, 016, 0xe);
printf("%d %d %d\n", 15, 017, 0xf);
return 0;
}
04.
#include <stdio.h>
int main()
{
printf("%c %c %c %c %c\n", '^', '*', '!', '#', '@');
printf("%f %f %f\n", 10.63, 2.34567E3, 2.34567E-3);
printf("\"C\" 언어는 재미있는 \'프로그래밍 언어\'이네요.\n");
return 0;
}
05.
#include <stdio.h>
// 매크로 상수로 PI를 정의
#define PI 3.14
int main()
{
float r = 5.37;
float area = r * r * PI;
float round = 2 * r * PI;
printf("원 반지름: %f\n", r);
printf("원 면적: %f\n", area);
printf("원 둘레: %f\n", round);
return 0;
}
06.
#include <stdio.h>
int main()
{
printf("\a");
printf("경보음 ~~ 수업 시간입니다.");
return 0;
}
07.
#include <stdio.h>
int main()
{
printf("%c %c %c %c %c", 041, 042, 043, 044, 045);
return 0;
}
08.
#include <stdio.h>
int main()
{
const float p = 3.305785;
printf("18(평): %.3f(제곱미터)\n" , 18*p);
printf("25(평): %.3f(제곱미터)\n" , 25*p);
return 0;
}
09.
#include <stdio.h>
int main()
{
const float mile = 0.621371;
printf("60(km): %.3f(mile)\n" , 60*mile);
printf("80(km): %.3f(mile)\n" , 80*mile);
printf("100(km): %.3f(mile)\n" , 100*mile);
printf("120(km): %.3f(mile)\n" , 120*mile);
return 0;
}
10.
#include <stdio.h>
int main()
{
printf("%c %c %c %c", 'A'+2, 'A'+5, 'S'-1, 'S'-3);
return 0;
}
11.
#include <stdio.h>
int main()
{
long long a = 117900000;
long long b = 2871000000;
printf("화성과 천황성 간의 거리 = %lld km", b-a);
// long long 자료형은 lld로 출력
return 0;
}
12.
#include <stdio.h>
#define EXCHANGE_RATE 1120.0
int main()
{
int won = 1000000;
printf("%d 원 => %f 달러", won, won / EXCHANGE_RATE);
return 0;
}
728x90
'C Programming' 카테고리의 다른 글
[C언어로 배우는 프로그래밍 기초 Perfect 3판] Chapter 04 ~ 08 (0) | 2022.06.28 |
---|---|
[C언어로 배우는 프로그래밍 기초 Perfect 3판] Chapter 04 프로그래밍 연습 (0) | 2022.06.27 |
[C언어로 배우는 프로그래밍 기초 Perfect 3판] Chapter 03 자료형과 변수 (0) | 2022.06.26 |
[C언어로 배우는 프로그래밍 기초 Perfect 3판] Chapter 02 프로그래밍 연습 (1) | 2022.06.26 |
[C언어로 배우는 프로그래밍 기초 Perfect 3판] Chapter 01 연습문제 정답 (0) | 2022.06.26 |