0

ユーザーが入力するために get.line を使用している駐車料金を計算して出力するプログラムを作成しています。「検索」を使用して行を区切るにはどうすればよいですか?

#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
#include <cmath>
using namespace std;
int main ()
{
string enter_date;
string enter_time;
string exit_date;
string exit_time;
int calculatecharge;
int num;

cout << "Please enter the date and time the car is entering "<< endl
<< "the parking garage in the following format: YY/MM/DD hh:mm"<< endl;
getline (cin,enter_date);
getline (cin,enter_time);
cout<< "Please enter the date and time the car is exiting "<< endl
<< "the parking garage in the following format: YY/MM/DD hh:mm"<< endl;
getline (cin,exit_date);
getline (cin,exit_time);

find(' ')


cout<<"Parking fee due: "<< num << endl;
return 0;
}
4

1 に答える 1

0

getline()を2回使用している場合は、以下のコードを試してください。

getline (cin, enter_date, ' ');
getline (cin, enter_time);
于 2012-04-04T08:43:44.657 に答える