gpt4 book ai didi

c++ - 使用 CIN 提示并接收日期 "MM/DD/YYYY",忽略 "/"字符? (在 C++ 中)

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:36:25 24 4
gpt4 key购买 nike

是的,这是为了作业。我不介意努力得到答案,我不想要确切的答案! :) 这是我的第一堂 C++ 课。我是在具备 VBA、MySql、CSS 和 HTML 的先验知识的情况下进入这门类(class)的。

我们需要编写一个具有多种不同功能的程序。其中之一需要接收以 "MM/DD/YYYY" 格式输入的日期。虽然这本身很容易;作为初学者,我会把

cin >> month >> day >> year;

并在向用户显示时在后面插入“/”。

但是,我相信我们的教授希望用户通过准确输入“12/5/2013”​​或任何其他日期来输入日期。


按照他的指示:

The '/' can be read by cin. So read the '/' character and ignore it. Set day to equal the 3rd input, month to the first input, and year to the fifth input. Discard the 2nd and 4th input.

^ 这就是我偏离路线的地方。


到目前为止,当用户在每次输入后按回车键时,我们只遇到过 cin。所以我不知道他是否希望用户在 12 之后按回车键,然后在“/”之后再次按 Enter,然后在 5 之后,在“/”之后,最后在“2013”​​之后(使用之前的 12/5/2013 示例) 2013 年 12 月 5 日)。

有没有更有经验的人对我应该做什么有任何可能的见解?我们只被教导如何使用“cin”来接收输入(所以我们不知道其他接收输入的方法),我不知道如何在输入字符串时“忽略字符”,例如 '12/5/2013' 正好。

如有任何帮助,我将不胜感激!

编辑:我在这里寻找答案,但我遇到的所有答案都超出了我们所教的范围,因此不允许出现在作业中。虽然我可以很容易地理解更高级编码的逻辑,但我对自己无法轻松解决这些更简单的问题感到沮丧。因此我在这里发帖。我花了几个小时浏览我们的教科书,寻找可能的答案或线索来“忽略”输入字符串中的字符,但结果很短。

最佳答案

其实很简单!问题是:您可以输入不止一件事。这意味着,如果你写 int d; std::cin >> d;,输入30/06/2014完全没问题。 d 的值变为 30 并且输入的其余部分尚未读取。如果您编写下一个 std::cin 语句,可用的内容是 /06/2014

然后需要消费/,读取月份,再次消费,最后读取年份。

#include <iostream>

int main()
{
int d;
int m;
int y;
std::cin >> d; // read the day
if ( std::cin.get() != '/' ) // make sure there is a slash between DD and MM
{
std::cout << "expected /\n";
return 1;
}
std::cin >> m; // read the month
if ( std::cin.get() != '/' ) // make sure there is a slash between MM and YYYY
{
std::cout << "expected /\n";
return 1;
}
std::cin >> y; // read the year
std::cout << "input date: " << d << "/" << m << "/" << y << "\n";
}

如果你能保证输入的格式是正确的,直接写就OK了

std::cin >> d;
std::cin.get();
std::cin >> m;
std::cin.get();
std::cin >> y;

或者,如果您不习惯使用 std::cin.get(),它与读取字符一样好:

char slash_dummy;
int d;
int m;
int y;
std::cin >> d >> slash_dummy >> m >> slash_dummy >> y;

下面是一些演示:

关于c++ - 使用 CIN 提示并接收日期 "MM/DD/YYYY",忽略 "/"字符? (在 C++ 中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24483655/

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