答案

关键词  •  1个月前


include <bits/stdc++.h>

using namespace std;

int main() {

int a, b;
cin >> a >> b;
for (int c = a; c <= b; c++) {
	if (c % 3 == 0) {
		cout << c << " ";
	}
}
return 0;

}


评论:

请先登录,才能进行评论