运行 ID: 212

Main.cc: In function ‘int main()’:
Main.cc:4:21: error: invalid operands of types ‘const char [9]’ and ‘long long int’ to binary ‘operator&’
     scanf("%d %d %d"&a,&b,&c);
           ~~~~~~~~~~^~
Main.cc:5:59: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long long int’ [-Wformat=]
     printf("wo chu sheng zai %d,%d yue,wo %d sui le",a,b,c);
                                                           ^
Main.cc:5:59: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘long long int’ [-Wformat=]
Main.cc:5:59: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘long long int’ [-Wformat=]
Main.cc:6:12: error: expected ‘}’ at end of input
    return 0;
            ^