#33160: ans cpp


yp11151025@yphs.tp.edu.tw (803-23江紘宇)

學校 : 臺北市私立延平高級中學
編號 : 196814
來源 : [203.72.178.1]
最後登入時間 :
2024-01-15 16:38:36
d018. 字串讀取練習 | From: [203.72.178.1] | 發表日期 : 2022-12-07 17:13

#include<iostream>
#include<sstream>
#include<string>
using namespace std;
int main(){
    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=ans-f;
            else ans=ans+f;
        cout<<ans<<endl;
        ans=0.0;
    }
}

 
ZeroJudge Forum