- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define password "Please enter your password"
int main(int arge, char *argv[])
(
char pass[100];
printf("Please enter your password\n\n");
scanf("is", pass);
if ( stromp(pass, passsword) == 0 )
(
printf("Congrats!! Correct Pass\n\n");
{ else}
printf("Wrong Pass\n\n");
)
system("PAUSE");
return 0;
)
所以我不确定它出了什么问题,我已经完全坚持了两天,每当我尝试编译它时,我都会得到这个:
prog.c:12:3: error: expected declaration specifiers or '...' before 'printf'
printf("Please enter your password\n\n");
^
prog.c:13:3: error: expected declaration specifiers or '...' before 'scanf'
scanf("is", pass);
^
prog.c:14:3: error: expected declaration specifiers or '...' before 'if'
if ( stromp(pass, passsword) == 0 )
^
prog.c:24:4: error: expected declaration specifiers or '...' before 'return'
return 0;
^
prog.c:7:5: error: 'main' declared as function returning a function
int main(int arge, char *argv[])
^
prog.c: In function 'main':
prog.c:25:1: error: expected '{' at end of input
)
^
prog.c:25:1: warning: control reaches end of non-void function [-Wreturn-type]
)
^
你能告诉我它应该是什么样子吗?
最佳答案
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[])
{
char pass[100];
char password[]="9009875316";
printf("Please enter your password\n\n");
fgets(pass,100,stdin);
if (!(strcmp(pass, password)))
{
printf("Congrats!! Correct Password\n\n");
// your code if entered password is correct..
}
else
{
printf("Wrong Password\n\n");
// your code if entered password is wrong..
}
return 0;
}
关于c - 我缺少什么,所以我可以编译我的源代码?我是新手,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31633887/
在 firefox 中,链接手形光标显示正常,但在 IE7 中显示文本光标。 如何在所有浏览器的链接上获得相同的光标(手)? 我可以在 CSS 重置中添加一些内容,以便在所有浏览器中的链接上获取光标吗
我试图在表单元素上方显示我的表单标签,所以我在我的 CSS 中使用了 display:block。但是,我无法通过这种方式每行显示超过 1 个表单元素。 如何正确更新我的 CSS 以在表单元素上方显示
我想找到人手的宽度,但卡在手上的洞上。 我有一只手的图片并找到了它的二进制文件。手上有一个圆圈,其半径和中心已知(引用对象)。我想找到手的宽度,但它上面有一些补丁(孔),这阻碍了找到手的最佳宽度。 这
我尝试为一款游戏制作一个机器人,但他们有很酷的反像素机器人技术。 所以我想,“如果我可以制作一个机器人,只检查光标是否变为手形然后单击,它就会起作用,”因为我需要收集奖金盒,当你将光标指向它时,它变为
我尝试为一款游戏制作一个机器人,但他们有很酷的反像素机器人技术。 所以我想,“如果我可以制作一个机器人,只检查光标是否变为手形然后单击,它就会起作用,”因为我需要收集奖金盒,当你将光标指向它时,它变为
所以我有一副牌的代码,但我不知道如何让另一个类来处理 4 手牌,每手 10 张牌。另一类应在屏幕上以文字形式打印 4 手 10 张随机卡片。有人可以向我展示如何完成此任务的代码吗?我也使用 blueJ
我正在尝试通过在开放正方形内插入图标来使用 fontawesome 创建图标。悬停时,我想更改正方形内背景的颜色,以及正方形的实际颜色和图标颜色。 我在这里举了一个例子:http://jsfiddle
当我手动启 Action 业时,我正在寻找设置变量的正确方法。 我试过 : stages: - test my_job: stage: test script: - echo "H
我必须添加以下代码: a {cursor:pointer;} 在 angular-ui-bootstrap 中将光标更改为标签、分页、下拉切换等链接上的指针/手。 为什么默认不改为指针?这是故意的吗?
我是一名优秀的程序员,十分优秀!