Run id: 147865

Main.cc: In function 'int main()':
Main.cc:6:5: error: 'doble' was not declared in this scope
     doble a=5,b=8,c=12,d=39;
     ^
Main.cc:7:21: error: 'a' was not declared in this scope
     printf("%.3lf",(a+b+c)/3);
                     ^
Main.cc:7:23: error: 'b' was not declared in this scope
     printf("%.3lf",(a+b+c)/3);
                       ^
Main.cc:7:25: error: 'c' was not declared in this scope
     printf("%.3lf",(a+b+c)/3);
                         ^
Main.cc:8:18: error: 'd' was not declared in this scope
     printf("%lf",d/a,d/a%);
                  ^
Main.cc:8:26: error: expected primary-expression before ')' token
     printf("%lf",d/a,d/a%);
                          ^
Main.cc:9:26: error: expected primary-expression before ')' token
     printf("%lf",d/b,d/b%);
                          ^
Main.cc:10:26: error: expected primary-expression before ')' token
     printf("%lf",d/c,d/c%);  
                          ^