3

我已经在 Windows 8 上安装了 Dev C++,这是我的第一个程序,但是在我运行它之前它运行平稳。

这是我的第一个程序:

第一个程序

当我编译它...

汇编

然而,当我运行它时,这里出现了问题......

运行程序出错

但是编译器日志显示此消息:

Compiler: Default compiler
Executing  gcc.exe...
gcc.exe "C:\Users\Zainab\Downloads\Table.c (2).c" -o "C:\Users\Zainab\Downloads\Table.c     (2).exe"    -I"C:\Dev-Cpp\include"   -L"C:\Dev-Cpp\lib" 
gcc.exe: Internal error: Aborted (program collect2)
Please submit a full bug report.

代码:

#include<stdio.h>

int main()
{
    int a, b, c=1;

    printf("Enter the table of:");
    scanf("%d", &a);
    printf("Enter the number of times:");
    scanf("%d", &b);

    while (c <= b) {
        printf("%d", a);
        printf("* %d", c);
        printf("= %d", a*c);

        if (c < b) {
            printf("\n");
        }

        c++;
    }

    return 0;
    getch();
}
4

1 回答 1

4

使用更好的工具。Dev-C++ 已被废弃。一个很好的免费开源 C++ IDE 是 CodeBlocks。还有其他的,例如 Orwell Dev-C++

于 2013-09-02T18:21:58.683 回答