简单的程序在c中不执行

发布于 2024-12-16 22:18:40 字数 337 浏览 0 评论 0原文

#include<stdio.h>
main()
{
    int i, int a[5]={1,2,48,3,88};
    for(i=0;i<4;i++)
    {
        if (a[i]<a[i+1])
        {
            printf("%d",a[i]);
        }
        else
        {
            printf("can't print");
        }
    }
}

该程序根本没有执行。我的目标是如果当前数字小于下一个数字则打印该数字。它应该打印,否则将打印无法打印。

#include<stdio.h>
main()
{
    int i, int a[5]={1,2,48,3,88};
    for(i=0;i<4;i++)
    {
        if (a[i]<a[i+1])
        {
            printf("%d",a[i]);
        }
        else
        {
            printf("can't print");
        }
    }
}

The program is not executing at all. My aim was to print the number if the current number is less than the next number. It should print or else it will print can't print.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

热鲨 2024-12-23 22:18:41

在当前版本的 C 中,您应该为 main 指定返回类型,并且返回类型必须为 int。我还建议指定参数列表。

int main(void)

如果您想要单独声明 ia (我推荐),那么您需要使用分号来分隔它们,如果您想要一个声明(我不会这样做)不推荐)您需要省略第二个int

int i; int a[5]={1,2,48,3,88};

或者

int i, a[5]={1,2,48,3,88};

您的 printf 字符串应以 \n 结尾,以确保它们按预期输出:

printf("%d\n",a[i]);

printf("can't print\n");

In current versions of C you should specify a return type for main and the return type must be int. I also recommend specifying the parameter list.

int main(void)

If you want separate declarations for i and a (which I recommend) then you need to use a semi-colon to separate them, if you want one declaration (which I wouldn't recommend) you need to omit the second int.

int i; int a[5]={1,2,48,3,88};

or

int i, a[5]={1,2,48,3,88};

Your printf strings should end with a \n to ensure they are output where expected:

printf("%d\n",a[i]);

printf("can't print\n");
我早已燃尽 2024-12-23 22:18:41

在每个 printf 中放置一个终止换行符 \n,例如 printf("can't print\n"); 或调用 fflush(NULL)

您的声明应分隔为

int i;
int a[5]={1,2,48,3,88};

“请适当缩进您的 C 代码”(在 Linux 上,indent 实用程序可以提供帮助)。

不要忘记编译带有警告和调试信息的程序(例如 Linux 上的 gcc -Wall -g myprog.c -o myprog

Put a terminating newline \n in every printf, e.g. printf("can't print\n"); or call fflush(NULL).

Your declarations should be separated as

int i;
int a[5]={1,2,48,3,88};

Please indent your C code appropriately (on Linux, the indent utility can help).

Don't forget to compile your program with warnings and debugging information (e.g. gcc -Wall -g myprog.c -o myprog on Linux)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文