本人使用编译器:Dev-C++
PAT常见评测结果:
1)答案正确(Accepted,AC)
2)编译错误(Compile Error, CE)
3)答案错误(Wrong Answer,WA)
4)运行超时(Time Limit Exceeded,TLE)
5)运行错误(Runtime Error,RE)
6)内存超限(Memory Limit Exceeded,MLE)
7)格式错误(Presentation Error,PE)
8)输出超限(Output Limit Exceeded,OLE)
注意点:C++的cin和cout可以不指定输入输出格式比较方便,但是cin和cout消耗的时间比scanf和printf多得多。顺便指出:请不要同时在一个程序中使用cout和printf,有时候会出问题。
#include<stdio.h>
int main(){
int a,b;
scanf("%d%d",&a,&b);
printf("%d",a+b);
return 0;
}
这个程序分为两个部分: