ABC192 A - Star(数学)2024-03-06 15:23:08 题意: 解法: 显然答案为100-x%100 code: #include<bits/stdc++.h> using namespace std; const int maxm=2e6+5; void solve(){ int x;cin>>x; cout<<100-x%100<<endl; } signed main(){ solve(); return 0; } 上一篇:SpringBoot实战项目收藏(都是超级好的)下一篇:如闪电划破雨夜,这些开源项目瞬间点亮了命令行