Hãy viết chương trình tính tính khoảng cách giữa hai điểm phân biệtA(x1, y1)vàB(x2, y2)trong mặt phẳnghai chiềuOxy ngôn ngữ c

2 câu trả lời

#include <stdio.h>

#include <math.h>

int main()

{

    int x1, x2, y1, y2;

    printf("Nhap toa do diem A : ");

    scanf("%d%d", &x1, &y1);

    printf("Nhap toa do diem B : ");

    scanf("%d%d", &x2, &y2);

    printf("Khoang cach = %f", sqrt(pow((x2 - x1), 2) + pow((y2 - y1), 2)));

    return 0;

}

#include <stdio.h>
int main()
{
    int x1, x2, y1, y2;
    printf("Nhap diem A : "); scanf("%d%d", &x1, &y1);
    printf("Nhap diem B : "); scanf("%d%d", &x2, &y2);
    printf("Khoang cua A va B la: %f", sqrt(pow((x2 - x1), 2) + pow((y2 - y1), 2)));
}

Câu hỏi trong lớp Xem thêm