首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
下面程序的输出结果是【 】。 #inclde<iostreamn> #include<math> using namespace std; class point { private: double x;
下面程序的输出结果是【 】。 #inclde<iostreamn> #include<math> using namespace std; class point { private: double x;
admin
2009-01-15
46
问题
下面程序的输出结果是【 】。
#inclde<iostreamn>
#include<math>
using namespace std;
class point
{
private:
double x;
double y;
public:
point(double a,double b)
{
x=a;
y=b;
}
friend double distance(point a,point b);
};
double distance(point a,point b)
{
return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
}
int main()
{
point p1(1,2);
point p2(5,2);
cout<<distalice(p1,p2)<<endl;
return 0;
}
选项
答案
4
解析
转载请注明原文地址:https://kaotiyun.com/show/ZSkp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
以下关于结构化程序设计的叙述中正确的是
有以下程序:#includeintf(intx);main(){intn=1,m; m=f(f(f(n)));printf("%d\n",m);}intf(intx){returnx*2;}程序运行后的输出结果是(
有以下程序#include<stdio.h>#include<string.h>StructA{inta;charb[10];doublec;};structAf(structAt);main(){struc
有下列程序:main(){inti,s=0,t[]={1,2,3,4,5,6,7,8,9};for(i=0;i
有以下程序,程序运行后的输出结果是#includemain(){intx,y,z;x=y=1;z=x++,y++,++y;printf("%d,%d,%d\n",x,y,z);}
表达式a+=a一=a=9的值是()。
有以下程序#include#includevoidfun(int*p1,int*p2,int*s){s=(int*)calloc(1,sizeof(int));*s=*p1+*p2;free(s);}main(){inta[2]={1,2
有以下程序:#include#defineN4voidfun(inta[][N],intb[]){ inti; for(i=0;i<N;i++)b[i]=a[i][i]-a[i][N-1-i];
运算符函数调用格式的表达式y/x++与表达式y.operator/(operator++(x,0))的含义相同,由此可看出()。
随机试题
A.安徽B.广西C.浙江D.河南E.吉林、辽宁、黑龙江蛤蚧药材的主产地是
自动血培养检测系统判断血液中有无微生物存在的依据是
下列不是CT扫描注意事项的是
刺四逢疗法,刺后可用手挤出
一般情况下,合同中所指的索赔是指( )所提出的索赔要求。
员工处理与领导的关系时,正确的做法是()。
人民警察内务建设的基本方针是()。
在一项实验研究中,研究者想要将样本量由30曾加到60,下列选项会增大的是
Theuseofcomputergraphics(1)manydiversefields.Applications(2)fromtheproductionofchartsandgraphs,tothegenerationof
流行的移动硬盘或优盘进行读/写利用的计算机接口是()。
最新回复
(
0
)