题解
2023-10-21 09:43:45
发布于:上海
11阅读
0回复
0点赞
/题解/
#include <iostream>
using namespace std;
int main(){
int b = 101;
int a[1001];
for (int i = 0;i < b;i++){
a[i] = i;
}
for (int i = b-1;i >= 1;i--){
if (a[i] % 5 == 0 ){
cout << a[i] << endl;
}
}
return 0;
}
这里空空如也
有帮助,赞一个