不会做的看过来
2024-01-18 16:08:04
发布于:广东
14阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int sy(int a){
int s=0;
for(int i=1;i<=a;i++){
int t=i;
while(t){
if(t%10==1){
s++;
}
t/=10;
}
}
return s;
}
int main(){
int a;
cin>>a;
cout<<sy(a);
return 0;
}
这里空空如也
有帮助,赞一个