私がC言語で解いた最初の方程式を記録します~

569 ワード

簡単なax^2+bx+c=0です
#include
#include

void fun(float a, float b, float c)
{
	float x1,x2,d;
	d=b*b-4*a*c;
	if(d<0)
	{
		printf("no root!
"); } if(d==0) { x1=x2=(-b)/(2*a); printf("root is %f
",x1); } if(d>0) { x1=((-b)+sqrt(d))/(2*a); x2=((-b)-sqrt(d))/(2*a); printf("one root is %f
another is %f
",x1,x2); } } void main() { float a,b,c; scanf("%f%f%f", &a, &b, &c); fun(a,b,c); }

次数を表すにはpow()を用いることができ,例えばb^2=pow(b,2)