float max (float a, float b){ float r; r=b; if(a>b) r=a; return r; } ... Src/main.c:184:5: error: conflicting types for 'max' ...
確定! 回上一頁