问天羽 发表于 2014-5-29 18:20:23

C练习--大小写转换(用到函数\数组\指针)

#include <stdio.h>
#define PASS "FISHC"
#define MAX 40
void abc(char * cyp);
int main()
{
char cyp;
printf("密码校验:\n");
gets(cyp);
abc(cyp);
while (strcmp(cyp,PASS) != 0)
{
puts("密码错误!");
gets(cyp);
abc(cyp);
}
puts("密码正确!\n");

return 0;
}
void abc(char * cyp)
{
int i,len;

len = strlen(cyp);
for (i = 0; i<= len; i++)
if (cyp>='a' && cyp<= 'z')
   cyp-=32;
}
页: [1]
查看完整版本: C练习--大小写转换(用到函数\数组\指针)