Love beautiful code? We do too.
Hàm double atan2(doubly y, double x) trong Thư viện C trả về arctan của y/x (giá trị radian).
Cú pháp hàm atan2() trong C:
double atan2(doubly y, double x)
Tham số
Trả về giá trị
#include <stdio.h>
#include <math.h>
#define PI 3.14159265
int main ()
{
double x, y, ret, val;
x = -7.0;
y = 7.0;
val = 180.0 / PI;
ret = atan2 (y,x) * val;
printf("Gia tri arctan2 cua x = %lf, y = %lf ", x, y);
printf("la bang %lf\n", ret);
return(0);
}
Biên dịch và chạy chương trình C trên sẽ cho kết quả:
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời