ac

向擎宇  •  4个月前


include <bits/stdc++.h>

using namespace std;

int main() {

int n, m, x;
cin >> n >> m >> x;
for (int i = n; i <= m; i++) {
	if (i % x != 0) {
		cout << i << " ";
	}
}
return 0;

}


评论:

人类不感谢罗辑


小绿  •  4个月前

请先登录,才能进行评论