为什么cout在vc++ getche()之前不起作用。 6.0?

发布于 2025-01-31 05:10:04 字数 491 浏览 2 评论 0原文

我想在输入之前显示一条消息:

cout<<"Enter a char:";
ch = getche();

但是,运行程序时不会显示消息,getche()有效,之后显示了消息!!!

整个程序:

#include <iostream.h>
#include <conio.h>

int main(){
    int ch;
    cout<<"Enter a char:";
    //cin.ignore();
    ch = getche();

    return 0;
}

我想做的整个问题是:

1- show a message 
2- enter ONLY one char 
3- do something immediately after entering the char

I want to show a message before an input :

cout<<"Enter a char:";
ch = getche();

But when running program it does not show the message and getche() works and after that the message is showed !!!

The whole program :

#include <iostream.h>
#include <conio.h>

int main(){
    int ch;
    cout<<"Enter a char:";
    //cin.ignore();
    ch = getche();

    return 0;
}

The whole problem that, i want to do is this:

1- show a message 
2- enter ONLY one char 
3- do something immediately after entering the char

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

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

发布评论

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

评论(1

网白 2025-02-07 05:10:04

添加endl宣布了问题:

cout<<"Enter a char:"<<endl;
ch = getche();

Adding endl soleved the problem :

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