大家好,我是小百,我来为大家解答以上问题。c语言代码100例,c语言代码大全表解释很多人还不知道,现在让我们一起来看看吧!
1、 #include<stdio.h>标准库文件
2、#include<math.h>数学库文件里面有cos()函数double pcos(double a); pcos就是cos函数套了个壳壳而已
3、int main(void){
4、double x, y;
5、printf("please input one number:");
6、scanf("%lf",&x);
7、printf("cos of %lf is %lf", x, pcos(x););return 0;
8、}
9、double pcos(double a){
10、double b;
11、b=cos(a);
12、return b;
13、} 题主应该学习Python的
本文到此讲解完毕了,希望对大家有帮助。