实验1C语言开发环境使用和数据类型、运算符、表达式
摘要:
//自加、自减运算 #include<stdio.h> int main() { int a=5,b=8; printf("a++=%d\n",a++); printf("a=%d\n",a); printf("++b=%d\n",++b); printf("b=%d\n",b); return 0; } //整数相除 #include<stdio.h> int main() { int a=5, 阅读全文
posted @ 2019-10-20 17:59 deepone 阅读(333) 评论(0) 推荐(0)
浙公网安备 33010602011771号