赛义德

赛义德  •  4天前


include

using namespace std;

int main() {

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

}


评论:

非常牛逼好吧 很真实 666


雷斯  •  4天前

请先登录,才能进行评论