开发者

C语言算术运算符整理

开发者 https://www.devze.com 2023-03-10 11:03 出处:网络 作者: mdxy-dxy
下表列出了C语言中的算术运算符。 运算符操作开发者_Python入门-减法+加法*乘法/除法%模量--递减++增量

下表列出了C语言中的算术运算符。

开发者_Python入门
运算符操作
-减法
+加法
*乘法
/除法
%模量
--递减
++增量

当应用/到整编程客栈数或字符时,任何余数都将被截断。 例如,5/2将在整数除法中等于2。模数运算符%产生整数除法的余数。 但是,不能在浮点类型上使用它。

以下代码片段说明了%:

#include <stdio.h>

int main(void)
{

   int x, y;

   x = 5;
   y = 2;

   printf("%dandroid \n", x / y);  /* will display 2 *python/
   printf("%d \n", x%y);  /* will display 1, the remainder of
                          the integer division */
   x = 1;
   y = 2;

   printf("%http://www.devze.comd %d \n", x / y, x%y); /* will display 0 1 */
   return 0;
}

一元减号将其编程客栈操作数乘以-1。 也就是说,任何以减号开头的数字都会切换其符号。

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号