用c++写一个引用cos函数的程序
时间: 2023-04-09 13:04:52 浏览: 134
C++函数大全
可以使用以下代码来引用cos函数:
#include <stdio.h>
#include <math.h>
int main() {
double x = 0.5;
double result = cos(x);
printf("The cosine of %lf is %lf\n", x, result);
return 0;
}
这个程序将输出:The cosine of 0.500000 is 0.877583。
阅读全文