自學第四十四天

//#include<stdio.h>
//#include<string.h>
//int main()
//{
//	char a[20] = { 0 };
//	int i = 1;
//	do
//	{
//		printf("請輸入密碼:");
//		scanf("%s", &a);
//		if (strcmp(a, "123456") == 0)
//		{
//			printf("密碼輸入正確!\n");
//			break;
//		}
//		else
//			printf("密碼錯誤!\n");
//		i++;
//	}
//	while (i <= 3);
//	if (i == 3)
//		printf("三次密碼錯誤,推出程序!\n");
//	return 0;
//}

//#include<stdio.h>
//#include<string.h>
//int main()
//{
//	char a[20] = { 0 };
//	int i;
//	for (i = 1; i <= 3; i++)
//	{
//		printf("請輸入密碼:");
//		scanf("%s", &a);
//		if (strcmp(a, "123456") == 0)
//		{
//			printf("密碼輸入正確!\n");
//			break;
//		}
//		else
//			printf("密碼錯誤!\n");
//	}
//	if (i == 3)
//		printf("三次密碼錯誤,退出程序!\n");
//	return 0;
//}
相關文章
相關標籤/搜索