This commit is contained in:
암냥 2026-03-31 09:16:35 +09:00
commit 7f76e58e1e
No known key found for this signature in database
10 changed files with 150 additions and 5 deletions

15
02/02_63p.c Normal file
View file

@ -0,0 +1,15 @@
#include <stdio.h>
#include <string.h>
int main() {
int num;
printf("10진수 입력 : ");
scanf("%d", &num);
printf("\n[출력결과]\n\n");
printf("1. 8진수 : %o\n", num);
printf("2. 16진수 : %X\n", num);
return 0;
}