codecamp

C 数学函数

学习C - C数学函数

C提供数学库来操数学运算。

你必须包括math.h以实现数学运算。

例子

以下是数学函数使用的插图代码:


  #include <stdio.h> 
  #include <stdlib.h> 

  #include <math.h> 

  int main() { 
     float a; 
     float b; 
     float pi = 3.14; 

     a = 0.5; 
     printf("value a = % .2f \n",a); 

     b = abs(-a); 
     printf("abs(a)=% .2f \n",b); 

     b = acos(a); 
     printf("acos(a)=% .2f \n",b); 

     b = asin(a); 
     printf("asin(a)=% .2f \n",b); 

     b = atan(a); 
     printf("abs(a)=% .2f \n",b); 

     b = atan2(a,5); 
     printf("atan(a,5)=% .2f \n",b); 

     b = cos(a); 
     printf("cos(a)=% .2f \n",b); 

     b = sin(a); 
     printf("sin(a)=% .2f \n",b); 

     b = tan(a); 
     printf("tan(a)=% .2f \n",b); 

     b = sqrt(a); 
     printf("sqrt(a)=% .2f \n",b); 

     return 0; 
  } 

上面的代码生成以下结果。



C 日期和时间函数
C 控制台输出
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

C 联合

C 预处理

C 索引

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }