#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#define SIZE 50
int check_time_str(char phon[]);
int main() {
char phon[20];
check_time_str(phon);
return 0;
}
int check_time_str(char phon[]) {
char x[4] = "010";
while (1)
{
printf("์ ํ๋ฒํธ ์
๋ ฅ(. ์
๋ ฅ์ ์ข
๋ฃ)\n");
gets(phon);
if (strlen(phon) == 11) {
if (strncmp(phon, x, 3) == 0) {
printf("%s ๋ ์ ํจํ ์ ํ๋ฒํธ ์
๋๋ค\n", phon);
}
}
else if(strcmp(phon,".")==0){
break;
}
else
{
printf("์๋ชป ์
๋ ฅํ์ต๋๋ค. 01012345678 ํ์์ผ๋ก ์
๋ ฅํด์ฃผ์ธ์\n");
}
}
}