gpt4 book ai didi

c - 在 C 中使用 getch() 时,当没有当前窗口错误时尝试绘制操作

转载 作者:行者123 更新时间:2023-11-30 21:38:55 28 4
gpt4 key购买 nike

在 C 语言中我遇到一个错误当我在代码中使用 getch() 命令并在一切完成后在代码块或 .exe 文件中运行它以及当控件转到 getch() 时命令它会显示一个错误弹出窗口,内容为

Drawing operation was attempted when there was no current window.

#include <stdio.h>
#include <conio.h>
int main() {
int a;
scanf("%d", &a);
printf("%d", a);
getch();
return(0);
}

使用代码:: block 16.01。

最佳答案

使用_getch()代替getch():

#include<conio.h>
_getch();

来源:https://learn.microsoft.com/cpp/c-runtime-library/reference/getch

关于c - 在 C 中使用 getch() 时,当没有当前窗口错误时尝试绘制操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44665926/

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