#include<stdio.h> #include<math.h> void main() { float x,y; printf("Please input x\n"); scanf("%f",&x); y=2*x+1; y=(float)pow(y+1,2); printf("%f",y); }
用到了平方,須要加上標準數學庫函數#include<math.h>函數