#15736: 963.369


despacito (老子)

學校 : 臺北市私立延平高級中學
編號 : 69080
來源 : [203.72.178.252]
最後登入時間 :
2019-05-29 17:34:24
d018. 字串讀取練習 | From: [203.72.178.252] | 發表日期 : 2018-10-24 17:31

#include <iostream>
#include <sstring>
#include <string>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
int n;
char colon;
float f, ans=0.0;
string line;
while(getline(cin,line)){
istringstream s(line);
while(s>>n>>colon>>f)
if(n%2==0) ans-=f;
else ans+=f;
cout<<ans<<endl;
ans=0.0;
}
return 0;
}

 
ZeroJudge Forum