利用二维数组实现口令验证。用c语言实现
答案:1 悬赏:30 手机版
解决时间 2021-03-30 17:29
- 提问者网友:欲望失宠
- 2021-03-30 10:00
利用二维数组实现口令验证。用c语言实现
最佳答案
- 五星知识达人网友:走死在岁月里
- 2021-03-30 10:10
#include
#define N 6
int issame(int a[2][N]){
int i;
for(i=0;i if(a[0][i]!=a[1][i])
return 0;
return 1;
}
int main(){
int a[2][N]={{1,2,3,4,5,6},{1,2,3,4,5,6}};
if(issame(a))printf("right!
");
else printf("wrong!
");
return 0;
} 或者:
#include
#include
int issame(char s[2][300]){
int i;
if(strlen(s[0])!=strlen(s[1]))
return 0;
for(i=0;i if(s[0][i]!=s[1][i])
return 0;
return 1;
}
int main(){
char s[2][300]={"123456",""};
scanf("%s",s[1]);
if(issame(s))printf("right!
");
else printf("wrong!
");
return 0;
}
#define N 6
int issame(int a[2][N]){
int i;
for(i=0;i
return 0;
return 1;
}
int main(){
int a[2][N]={{1,2,3,4,5,6},{1,2,3,4,5,6}};
if(issame(a))printf("right!
");
else printf("wrong!
");
return 0;
} 或者:
#include
#include
int issame(char s[2][300]){
int i;
if(strlen(s[0])!=strlen(s[1]))
return 0;
for(i=0;i
return 0;
return 1;
}
int main(){
char s[2][300]={"123456",""};
scanf("%s",s[1]);
if(issame(s))printf("right!
");
else printf("wrong!
");
return 0;
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯