摘要:
3.编写代码模拟三次密码输入的场景。 最多能输入三次密码,密码正确,提示“登录成功”,密码错误, 可以重新输入,最多输入三次。三次均错,则提示退出程序。 #define _CRT_SECURE_NO_WARNINGS 1 #include <stdio.h> #include <string.h> 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> int find(int s) { int n = 0; scanf_s("%d",&s); int a[100] = { 213,432,5436,765324,243,654,12387,87626,645,625,5 阅读全文