思路及代码
//input T int >0
//input a,b int 0< <10000 10< <100
#include<iostream>
#include<iomanip>
using namespace std;
int main(){
int T;
cin >> T;
while (--T >= 0){
int a, b;
cin >> a >> b;
//solution
// (a*100+i)%b = 0
//from 0->99
int count = 0;
for (int i = a*100; i <= a*100+99; i++){
if (i%b == 0){
if (count != 0){
cout << ' '<< setw(2) << setfill('0') << i - a * 100;
}else{
cout << setw(2) << setfill('0') << i - a * 100;
count++;
}
}
}
cout << endl;
}
return 0;
}
参考: 1️⃣C++ 格式化输出(前置补0,有效位数,保留小数,上下取整,四舍五入)_c++输出前面补0-CSDN博客
收获:1️⃣复习前置补 0 <iomanip> setw() setfill('...')
菜菜,不是教程,做题和学习记录