This commit is contained in:
암냥 2026-04-18 22:25:36 +09:00
commit 6fef06ae70
No known key found for this signature in database
67 changed files with 436 additions and 1 deletions

15
04/ex07.c Normal file
View file

@ -0,0 +1,15 @@
#include <stdio.h>
int main() {
int pw;
printf("비밀번호 입력 : ");
scanf("%d", &pw);
if (pw == 1234) {
printf("비밀번호가 맞습니다.");
}
else {
printf("비밀번호가 틀립니다.");
}
}