输入具有默认值的模拟参数

发布于 2024-11-17 04:01:03 字数 508 浏览 2 评论 0原文

我正在编写一个程序,要求用户输入多个参数进行模拟,但大多数时候他们每次都会输入相同的值,所以我希望有某种默认值,这样他们只需按 Enter 键即可将使用该值。

提示符将如下所示:

Enter Some Parameter [15]: 

这样他们就可以输入他们想要的任何数字,或者只需按 Enter 键即可使用 15。

这就是我到目前为止

parameter = cin.get();
if(parameter == '\n')
    parameter = defaultValue;

它的工作原理,但仅适用于第一个数字,我也最终得到了一个字符转换我正在使用的参数的类型而不是用户输入的实际值。

我会使用

cin >> parameter;

,但这不允许我按照我描述的方式使用默认值。

有谁知道我可以做到这一点的方法吗?

I'm writing a program that requires the user to enter several parameters for a simulation, but most of the time they will be entering the same values each time so I want there to be some sort of default value so they can just press enter and that value will be used.

the prompt will look something like this:

Enter Some Parameter [15]: 

so they can enter any number they want, or just press enter to use 15.

this is what I have so far

parameter = cin.get();
if(parameter == '\n')
    parameter = defaultValue;

it works, but only for the first digit and I also end up with a char cast to whatever type the parameter I'm working with is rather than the actual value that the user entered.

I would use

cin >> parameter;

but that doesn't let me use a default value in the way I described.

Does anyone know a way I can do this?

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

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

发布评论

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

评论(2

云巢 2024-11-24 04:01:03

您可以尝试使用字符串而不是字符,例如:

std::string s;
getline( cin, s );
if( s.empty() ) // user pressed enter
     s = defaultValue;

这不适用于第一个数字,但适用于整行

You can try using string instead of char, for example:

std::string s;
getline( cin, s );
if( s.empty() ) // user pressed enter
     s = defaultValue;

This will work not for the first digit, but for the entire line

海拔太高太耀眼 2024-11-24 04:01:03

您可以使用 cin.getline()。如果输入了有效的参数,则更新该参数;否则就使用默认值。

You could use cin.getline(). If they input a valid parameter, then update the parameter; otherwise just use the default.

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