92求助
查看原帖
92求助
1499596
saraxixi楼主2024/11/25 21:35

92求助!

#include<iostream>
using namespace std;
int main(){
	long long int x1,x2,y1,y2;
	cin>>x1>>x2;
	cin>>y1>>y2;
	if(x2*y2>2147483647||x2*y2<-2147483648){
		cout<<"long long int";
	}else{
		cout<<"int";
	}
	return 0;
}
2024/11/25 21:35
加载中...