论奇怪的代码
查看原帖
论奇怪的代码
746229
Joker_lazydoghead楼主2022/12/21 16:07

P0001普通人写的C++代码:

#include<bits/stdc++.h>
using namespace std;
int main(){
	int a,b;
	cin>>a>>b;
	cout<<a+b;
	return 0;
}

我写的:

#include<iostream>
using namespace std;
typedef unsigned long long INT;
typedef long long _INT_;
typedef long __INT__;
typedef int ___INT___;
___INT___ a,b;
main(){
	scanf("%d%d",&a,&b);
	printf("%d",a+b);
}

请问为什么我还试是过了

2022/12/21 16:07
加载中...