A437.*循环输出3
2025-09-21 11:45:27
发布于:广东
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
void f(int x1, int x2) {
for (int i = x2; i >= x1; i--)
if (i % 5 == 0)
cout << i << endl;
}
int main() {
f(1, 100);
return 0;
}
这里空空如也
有帮助,赞一个