摘要: 1.运算符 1.1 算术运算符 + - * / ++ -- % -- 取余 # include <stdio.h> int main() { int a = 15,b = 8,c; c = a + b; printf("c = %d\n",c); c = a - b; printf("c = %d\ 阅读全文
posted @ 2023-05-17 03:10 Icer_Newer 阅读(9) 评论(0) 推荐(0) 编辑