Hàm fopen mở file

November 14, 2015 VietVH 0

FILE *fopen( const char *filename,const char *mode); Parameter: filename: tên file (bao gồm cả đường dẫn tới file) mode: các chế độ open khác nhau […]

Hàm tính hypebol sinx, cosx, tanx

November 13, 2015 VietVH 0

double sinh(double x); double cosh(double x); double tanh(double x); Parameter: x: góc (radian) Remark: Các hàm trên trả về hypebol sin, cos, tan của x.

1 35 36 37 38 39 51