gpt4 book ai didi

c - 如何在 C 编程中用“String”替换这种类型 "int"?

转载 作者:太空宇宙 更新时间:2023-11-04 06:19:48 25 4
gpt4 key购买 nike

<分区>

我正在使用 dev c++ 。这是一个愚蠢的程序,它要求正确的键来显示文本。该程序与“int”类型(仅数字)完美配合:

    #include <stdio.h>
#include<conio.h>

main()
{
int key;

printf("This program show a mensage if you get the correct key \n");
printf("Write the key:\n");
scanf("%i",&key);
if(key==1234)
{
printf("Welcome to stackoverflow \n");
}
else
{
printf("You keep going slept \n");
}
getch();
return 0;

}

但是我如何替换字符串,例如:sesame、house 等等。

我试过矩阵:

char key[];

但是我得到了错误。

真诚的NIN.

更新:

我可以获得一个新程序:

#include <stdio.h>
#include<conio.h>

main()
{
char key[7]; /*replace int for char*/

printf("This program show a mensage if you get the correct key \n");
printf("Write the key:\n");
scanf("%c",&key);
if(key=="sesame") /*numbers for string*/
{
printf("Welcome to stackoverflow \n");
}
else
{
printf("You keep going slept \n");
}
getch();
return 0;

}

然而,即使我修复了正确的 key (“芝麻”),我也只是得到“你继续 sleep ”

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com