Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
20230 董承诺 求两位整数各个位上的数字和 C++ Accepted 100 0 MS 244 KB 145 2021-06-06 14:53:29

Tests(5/5):


#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a; b=((a%100-a%10)/10)+a%10; cout<<b; return 0; }


Judgement Protocol: