提交时间:2020-08-04 17:16:44
运行 ID: 5452
#include<bits/stdc++.h> using namespace std; int main(){ int t,s=0; cin>>t; while(t){ if(t%10==1)s++; t=t/10; } cout<<s; return 0; }