c语言返回100以内的素数的函数


#include <stdio.h>is_prime(int x) { if(x%2 == 0){ return 0; } else{ return 1; }}int main() { for (int i = 0; i < 10

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语言-变量输入:如何让程序读入用户输入的数字,scanf


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