A. An Olympian Math Problem
直接输出n-1,注意范围要 long long 。
#include<cstdio>
using namespace std;
typedef long long ll;
ll t,n;
int main(){
scanf("%lld",&t);
while(t--){
scanf("%lld",&n);
printf("%lld\n",n-1);
}
return 0;
}
原文地址:https://www.cnblogs.com/lingyuanchuang/p/9595296.html
时间: 2024-10-27 15:56:55