archer811 / hustoj

Automatically exported from code.google.com/p/hustoj
0 stars 0 forks source link

The result for this shoud be PE instead of AC #12

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
#include <iostream>
using namespace std;
int main(){
  int a,b;
  while(cin>>a>>b){
    cout<<a+b<<endl<<endl<<endl;
  }
  return 0;
}

Original issue reported on code.google.com by alazyrab...@gmail.com on 5 Jun 2010 at 10:44

GoogleCodeExporter commented 9 years ago
i thought the endls on the end of output is just ignored
because web sample , output files and web input from different platform may 
cause these 
more or less endls. and these lines do not affect algorithm in general.

i thought other OJs doing the same, like POJ or ZOJ 

Original comment by newsc...@gmail.com on 5 Jun 2010 at 5:57