发布时间:2023-10-24 00:42来源:www.sf1369.com作者:宇宇
shell脚本
不是pascal
PHP(外文名:PHP: Hypertext Preprocessor,中文名:“超文本预处理器”)是一种通用开源脚本语言。语法吸收了C语言、Java和Perl的特点,利于学习,使用广泛,主要适用于Web开发领域。PHP 独特的语法混合了C、Java、Perl以及PHP自创的语法。它可以比CGI或者Perl更快没衫速地执行动态网页。用PHP做出的动态页面与其他的编程语言相比,PHP是将程序嵌入到HTML(标准通用标记语言下的一个应用)文档中去执行,执行枯陆腔效率比完全生成HTML标记的CGI要高许多;PHP还可以执行编译后代码,编译可以达悉缓到加密和优化代码运行,使代码运行更快。
#include <stdio.h>
/***********SPACE***********/
#include <math.h>
void main()
{
float a,b,c,disc,x1,x2,realpart,imagpart;
scanf(%f%f%f,&a,&b,&c);
printf(the equation);
/***********SPACE***********/
if( a <=1e-6)
printf(is not quadratic\n);
else
{
disc=b*b-4*a*c;
if(fabs(disc)<=1e-6)
printf(has two equal roots:%-8.4f\n,-b/(2*a));
/***********SPACE***********/
else if(disc>0)
{
x1=(-b+sqrt(disc))/(2*a);
x2=(-b-sqrt(disc))/(2*a);
printf(has distinct real roots:%8.4f and %.4f\n,x1,x2);
}
else
{
realpart=-b/(2*a);
imagpart=sqrt(-disc)/(2*a);
printf(has complex roots:\n);
printf(羡芦早哗衫%8.4f+%.4fi\n兄雀,realpart,imagpart);
printf(%8.4f-%.4fi\n,realpart,imagpart);
}
}
}
2 -3 -5
the equationhas distinct real roots: 2.5000 and -1.0000
Press any key to continue
#include
<stdio.h>
/***********SPACE***********/
#include
<math.h>
void
main()
{
float
a,b,c,disc,x1,x2,realpart,imagpart;
scanf(%f%f%f,&a,&b,&c);
printf(the
equation);
/***********SPACE***********/
if(
a
<=1e-6)
printf(is
not
quadratic\n);
else
{
disc=b*b-4*a*c;
if(fabs(disc)<=1e-6)
printf(has
two
equal
roots:%-8.4f\n,-b/(2*a));
/雀码***********SPACE***********/
else
if(disc>0)
{
x1=(-b+sqrt(disc))/掘碰(2*a);
x2=(-b-sqrt(disc))/(2*a);
printf(has
distinct
real
roots:%8.4f
and
%.4f\n,x1,x2);
}
else
{
realpart=-b/(2*a);
imagpart=sqrt(-disc)/(2*a);
printf(has
complex
roots:\n);
printf(%8.4f+%.4fi\n,realpart,imagpart);
printf(%8.4f-%.4fi\n顷散哪,realpart,imagpart);
}
}
}
2
-3
-5
the
equationhas
distinct
real
roots:
2.5000
and
-1.0000
Press
any
key
to
continue
上面那个就是错的,c程序设计(第三版)谭浩强 著 p109有答案
#include <iostream>
using namespace std;
const double PI = 3.14159;
void main()
{
double r;
cin>>r;
double s = PI*r*r;
double c = PI*2*r
cout<<s=<<s<<,c<<陵瞎c<漏缺<尺搜空endl;
}
#include<iostream>
using namespace std;
const double PI=3.14159;
void main()
{
double r;
//茄橡cout<<输入圆半径:;
cin>>r;
cout<<周长:<<2*PI*r<<中告endl;
cout<<面积:卖纳明<<PI*r*r<<endl;
}
最后一行应该是
cout<<s=<<卖败s<<c=拆携<中御颤<c<<endl;
南邮的?感谢有这么个人在提问,不然死都完成作业