c语言swap函数


#include <stdio.h>void swap(int *x, int *y) { int tmp = *x; //通过tmp变量存储x的内存地址 *x = *y; //将y的内存地址赋值给x的内存地址,使得x值为y, *y = tmp; //将之前的x的内存地

C-bool


头部加入#include <stdbool.h>之后就可以使用bool和true,false#include <stdio.h>#include <stdbool.h>int main() { bool b = 6 > 5; bool t = t

C语言关系运算


关系运算关系运算的结果

C语言运算符优先级


C语言-浮点数


浮点数 %f整数 %d当浮点数和整数放到一起运算时,C会将整数转换成浮点数,然后进行浮点数的运算 (foot + inch / 12) * 0.3048; (foot + inch / 12.0) * 0.3048;double 变量表示变量是一个浮点数如果声明变量用的是double。那

C语言-简单加法运算


#include <stdio.h>int main(){int a;int b;printf("请输入两个整数:");scanf("%d %d",&a,&b);printf("%d + %d = %d\n",a

C语言-常量


const是一个修饰符,加在int前面,给这个变量加上一个const的属性。这个const的属性表示这个变量的值一旦初始化,就不能再修改了

C语言-变量输入:如何让程序读入用户输入的数字,scanf


#include <stdio.h>int main(){int a = 0;int b = 0;scanf("%d %d",&a,&b);printf("%d %d",a,b);}