반응형
1번. 다음과 같은 결과가 출력되게 문자열 상수를 사용하여 빈칸을 채우세요.
#include <stdio.h>
int main()
{
printf("%s = %d \n", "10+20", 10+20);
return 0;
}
결과 화면
2번. 다음과 같은 결과가 출력되게 심볼릭 상수를 이용하여 프로그램을 작성하세요.
#include <stdio.h>
int main()
{
const int today = 2010;
const int age = 20;
const int year = 1990;
const int age2 = 18;
const int year2 = 1992;
printf("올해는 %d년입니다.\n", today);
printf("내 나이는 %d살입니다\n", age);
printf("나는 %d년에 태어나 %d번째 해가 되었습니다.\n", today, age);
printf("내 동생의 나이는 %d살입니다.\n", age2);
printf("내 동생은 %d년에 태어나 %d번째 해가 되었습니다.\n", year2, age2);
return 0;
}
결과 화면
3번. 소문자 a를 저장하는 변수를 하나 만들고, 부록의 ASCII 코드 표를 참고하여 대문자 A를 출력하는 프로그램을 작성하세요. 소문자와 대문자의 차이를 덧셈 또는 뺄셈하면 됩니다.
#include <stdio.h>
int main()
{
char a ,b;
a = 97;
b = 32;
printf("\n%c\n", a - b);
return 0;
}
결과 화면
728x90
반응형