标签:turn cin 题目 mat line cout continue puts 知识
求两个不超过 \(n\) 的正整数的最小公倍数的最大值。
略...
注意特判 \(n = 1\)。
#include <bits/stdc++.h>
using namespace std;
int main() {
int T;
cin >> T;
while (T--) {
int n;
cin >> n;
if (n == 1) {
puts("1");
continue;
}
cout << 1ll * n * (n - 1) << endl;
}
return 0;
}
标签:turn cin 题目 mat line cout continue puts 知识
原文地址:https://www.cnblogs.com/xht37/p/11107868.html