求C语言20积分
答案:1 悬赏:30 手机版
解决时间 2021-05-07 17:08
- 提问者网友:雪舞兮
- 2021-05-07 11:22
求C语言20积分
最佳答案
- 五星知识达人网友:神也偏爱
- 2021-05-07 11:33
#include <stdio.h>
#include <math.h>
int main(void)
{
double X = 0, Y = 0;
printf("Enter the co-ordinates of point P (X , Y) : ");
scanf("%f%f", &X, &Y);
printf("The point is ( %f, %f)\n", X, Y);
if ( X == 0 )
printf("The slope is infinity! The ");
else
printf("The slope is %f and the ", Y / X);
printf("distance is %f\n", sqrt( X * X + Y * Y));
return 0;
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯