小白入門.有函數F(x)=(x+1)^2和G(x)=2x+1.輸入x值計算F(G(x))。

#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>函數

相關文章
相關標籤/搜索