gpt4 book ai didi

c++ - 代码块 16 位消息

转载 作者:行者123 更新时间:2023-12-02 10:20:47 26 4
gpt4 key购买 nike

enter image description here我是 Codeblocks 和编程世界的新手。

( 不支持的 16 位应用程序

程序或功能
"\??C:\Users\Hossen\Desktop\C_Time\try\bin\Debug\Try.exe"不能
由于与 64 位版本的 Windows 不兼容而启动或运行。
请联系软件供应商询问是否是 64 位 Windows
兼容版本可用。 )

我的代码块显示此消息并且没有打印一行。
最近我面临这个问题。请任何人帮我解决这个问题?

#include <stdio.h> 
#include <stdlib.h>
int main()
{
int a, b, c, GCD;
a = 10;
b = 20;
for (c = 1; c <= a && c <= b; c++)
{
if (a % c == 0 && b % c == 0)
{
GCD = c;
}
}
printf("%d\n", GCD);
return 0;
}

最佳答案

代码看起来不错,所以我猜你的安装不正确。
由于您是新手,为了简单起见,您可能只需要重新安装 Code::Blocks。
安装前检查您是否下载了正确的版本。 (支持 64 位操作系统,不支持 32 位)
然后尝试在 Program Files 中安装它。
希望这会有所帮助。

关于c++ - 代码块 16 位消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60273856/

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