Skip to content

Instantly share code, notes, and snippets.

@sunday1103
Last active April 14, 2017 10:43
Show Gist options
  • Save sunday1103/8f8d63bd8e1c1fe75c02f891e9ae1352 to your computer and use it in GitHub Desktop.
Save sunday1103/8f8d63bd8e1c1fe75c02f891e9ae1352 to your computer and use it in GitHub Desktop.
C++输入输出

输出时间格式

输出例子:<序号=1,进站时间=08:01,进站站点=S1,出站时间=09:30,出站站点=S10,消费金额=4>

ostringstream oss;
oss << "<序号=" << index <<",进站时间=";
oss <<setfill('0') ;
oss <<setw(2)<<log[i].enterTime.hour<<":"<<setw(2)<<log[i].enterTime.minutes;

oss <<",进站站点="<<log[i].enterStation<<",出站时间=";
oss <<setfill('0') ;
oss <<setw(2)<<log[i].exitTime.hour<<":"<<setw(2)<<log[i].exitTime.minutes;

oss <<",出站站点="<<log[i].exitStation
    <<",消费金额="<<log[i].money
    <<">\r\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment