複製內容到剪貼板
代碼:
int s=0,t=0,u=0,v=0;w=0;
w 前面的逗號,誤打成分號了。
複製內容到剪貼板
代碼:
s = (int)(pow(a,3));
t = (int)(pow(b,3));
u = (int)(pow(c,3));
v = (int)s+t+u;
w = (int)(pow(d,3));
在 a,b,c,d 前面都加一個 (float) 吧。變成
複製內容到剪貼板
代碼:
s = (int)(pow((float)a,3));
t = (int)(pow((float)b,3));
u = (int)(pow((float)c,3));
v = (int)s+t+u;
w = (int)(pow((float)d,3));