根据三角形的基本定理完成填空,则表达式应为______。
include<iostream.h>
include<math.h>
void main( )
{
double a,b,e,s,area;
cout<<"请输入三角形三边a,b,e,"<<endl;
cin>>a>>b>>c;
if(______)
{
s=(a+b+c)/2;
area=sqrt(s*(s-a)*(s-b)*(s-c));
cout<<"三角形的面积为:"<<area;
}
else
cout<<"不能构成三角形!"<<endl;
}
第1题:
下列程序的输出结果是______。
include <iostream.h>
include <cstring.h>
using namespace std;
void fun(const char*s,char &C) {c=s[strlen (s)/2];}
int main {)
{
char str [] ="ABCDE";
char ch=str[1];
fun(str,sh);
cout<<Ch;
return 0;
}
第2题:
1、若程序中含有以下移位函数LED_PORT=_crol_(0xfe,1),则编程时必须包含以下哪条头文件()。
A.#include <intrins.h>
B.#include <stdio.h>
C.#include <math.h>
D.#include <absacc.h>
第3题:
若程序中含有以下移位函数LED_PORT=_crol_(0xfe,1),则编程时必须包含以下哪条头文件()。
A.#include <absacc.h>
B.#include <stdio.h>
C.#include <intrins.h>
D.#include <math.h>
第4题:
在下列# include命令中,正确的一条是 ( )
A.# include [string.h]
B.# include {math.h}
C.# include(stdio.h)
D.# include<stdio.h>
第5题:
【填空题】写出下面程序执行后的运行结果。 #include< iostream> using namespace std; # include <math.h> #define ROUND____ ____ ____*pow ____ + 0. 5) /pow ____) void main____ cout<<ROUND ____<< "," <<ROUND____; }