/ Vijos / 讨论 / 分享 /

c++交不了题?

全是NO Compiled,包括多个版本的a+b problem

1 条评论

  • @ 2009-10-29 01:46:10

    LZ……

    可以呀。

    用 注释 Hint

    Free Pascal Code:

    ---|---|---|---|---|---|-

    program Plus;

    var a,b:longint;

    begin

    readln(a,b);

    writeln(a+b);

    end.

    C++ Code:

    ---|---|---|---|---|---|-

    #include

    using namespace std;

    int main(){

    int a,b;

    cin>>a>>b;

    cout

  • 1