2021年7月28日
摘要: 1 //大写字母与小写字母 相差 一个 空格 A = 65 a = 97 空格 = 32 2 3 #include <stdio.h> 4 int main() 5 { 6 7 char ch = 'a'; 8 char ch2 = 'A'; 9 char ch1 = ' '; 10 printf( 阅读全文
posted @ 2021-07-28 12:31 Bytezero! 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 在 C 语言中,数据类型指的是用于声明不同类型的变量或函数的一个广泛的系统。变量的类型决定了变量存储占用的空间,以及如何解释存储的位模式。 C 中的类型可分为以下几种: 阅读全文
posted @ 2021-07-28 12:31 Bytezero! 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 1 //接收用户输入的小写字母,转换为大写字母并展示 2 3 4 #include <stdio.h> 5 int main() 6 { 7 char num; 8 printf("请输入一个小写字母:"); //a 9 scanf("%c",&num); 10 printf("转换大写字母为:%c 阅读全文
posted @ 2021-07-28 12:30 Bytezero! 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 运算符是一种告诉编译器执行特定的数学或逻辑操作的符号。C 语言内置了丰富的运算符,并提供了以下类型的运算符: 算术运算符 关系运算符 逻辑运算符 位运算符 赋值运算符 杂项运算符 1 //实列 2 3 #include <stdio.h> 4 5 int main() 6 { 7 int a = 2 阅读全文
posted @ 2021-07-28 12:29 Bytezero! 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 实列 1 #include <stdio.h> 2 3 int main() 4 { 5 6 unsigned int a = 60; /* 60 = 0011 1100 */ 7 unsigned int b = 13; /* 13 = 0000 1101 */ 8 int c = 0; 9 10 阅读全文
posted @ 2021-07-28 12:28 Bytezero! 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 下表显示了 C 语言支持的所有关系运算符。假设变量 A 的值为 10,变量 B 的值为 20,则: 实列: 1 #include <stdio.h> 2 3 int main() 4 { 5 int a = 21; 6 int b = 10; 7 int c ; 8 9 if( a == b ) 1 阅读全文
posted @ 2021-07-28 12:28 Bytezero! 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 实列 1 #include <stdio.h> 2 3 int main() 4 { 5 int a = 4; 6 short b; 7 double c; 8 int* ptr; 9 10 /* sizeof 运算符实例 */ 11 printf("Line 1 - 变量 a 的大小 = %lu\ 阅读全文
posted @ 2021-07-28 12:28 Bytezero! 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 运算符的优先级确定表达式中项的组合。这会影响到一个表达式如何计算。某些运算符比其他运算符有更高的优先级,例如,乘除运算符具有比加减运算符更高的优先级。 例如 x = 7 + 3 * 2,在这里,x 被赋值为 13,而不是 20,因为运算符 * 具有比 + 更高的优先级,所以首先计算乘法 3*2,然后 阅读全文
posted @ 2021-07-28 12:27 Bytezero! 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 1 //除法 取模 后置 前置 2 3 4 #include <stdio.h> 5 int main() 6 { 7 //float num1 = 5.0; 8 //float num2 = 2.0; 9 int num1 = 5,num2 = 2; //整形输出整形 float行输出小数点 10 阅读全文
posted @ 2021-07-28 12:26 Bytezero! 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 1 //用 getchar putchar 来输入和接收 但是要清空缓冲区 2 3 #include <stdio.h> 4 int main() 5 { 6 char ch1,ch2; 7 printf("请输入一个字符"); //a 8 ch1 = getchar(); //接收字符 9 ffl 阅读全文
posted @ 2021-07-28 12:23 Bytezero! 阅读(88) 评论(0) 推荐(0) 编辑