摘要: A: 点击查看代码 #include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n<0) { cout<<"-"; } n=abs(n); bool b=0; while(n>0) { if(n%10!=0) 阅读全文
posted @ 2024-11-24 14:20 cathyzro 阅读(20) 评论(0) 推荐(0)