string a; int odd=0,even=0,yuan=1;//yuan=判斷數 cin>>a; for(int i=0; i<a.length(); i++) { if(yuan%2==1) odd+=a[i]-'0'; else even+=a[i]-'0'; yuan++;
}