将 sleep() 与 rand() 一起使用,在 C++ 中出现错误

发布于 2024-12-23 18:16:34 字数 430 浏览 0 评论 0原文

我正在尝试创建一个涉及“计算机”向您打字的游戏。我无法获得打字效果,而不是自动显示输​​出。如果有人有任何建议来实现这一点,我愿意接受想法,因为我在 C++ 方面还是新手。

所以我试图在 sleep 方法中生成一个随机数,如下所示:

    Sleep(rand()%1500);

非常简单。可能太简单了哈哈。但我收到错误:“表达式必须具有算术或枚举类型。”

我实现打字效果的想法是循环输出的每个字符加上这个 sleep 方法,直到没有更多的输出为止。显示为:

    for(int i = 0; i <= output.length(); i++){

    cout << output[i] + Sleep(random);

}

感谢您的帮助!!!

I'm trying to create a game that involves the "computer" typing to you. I'm having trouble getting the typing effect instead of having the output automatically appear. If anyone has any suggestions to achieve this I'm open to ideas since I'm pretty novice at C++.

So I'm trying to get a random number to generate within the sleep method which is shown as:

    Sleep(rand()%1500);

Pretty simple. Maybe too simple haha. But I'm getting the error: "expression must have arithmetic or enum type."

My idea to achieve the typing effect is to loop each character of the output plus this sleep method until there is no more output left. This is shown as:

    for(int i = 0; i <= output.length(); i++){

    cout << output[i] + Sleep(random);

}

Thanks for any help!!!

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

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

发布评论

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

评论(2

关于从前 2024-12-30 18:16:34
cout << output[i] + Sleep(random);

这是没有意义的 - Sleep() 没有(有意义?)返回值,并且将结果添加到输出中没有任何意义。

把它分成两个独立的陈述:

cout << output[i];
Sleep(random);

你应该没问题。

cout << output[i] + Sleep(random);

This doesn't make sense -- Sleep() has no (meaningful?) return value, and it doesn't make any sense to add the result to your output.

Break it up into two independent statements:

cout << output[i];
Sleep(random);

and you should be fine.

×眷恋的温暖 2024-12-30 18:16:34

您无法打印 Sleep 来进行 cout。你想要的是这样的:

for(int i = 0; i <= output.length(); i++){
{
    cout << output[i];
    Sleep(rand()%1500);
}

You can't print Sleep to cout. What you want is this:

for(int i = 0; i <= output.length(); i++){
{
    cout << output[i];
    Sleep(rand()%1500);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文