摘要:
C语言: C 语言是一种通用的高级语言,最初是由丹尼斯·里奇在贝尔实验室为开发 UNIX 操作系统而设计的。C 语言最开始是于 1972 年在 DEC PDP-11 计算机上被首次实现。 在 1978 年,布莱恩·柯林汉(Brian Kernighan)和丹尼斯·里奇(Dennis Ritchie)
阅读全文
posted @ 2021-07-28 12:35
Bytezero!
阅读(143)
推荐(0)
编辑
摘要:
第一个程序:1 //打印 hello world 2 3 #include <stdio.h> 4 int main() 5 { 6 printf("hello world!\n"); 7 return 0; 8 } 打印结果:
阅读全文
posted @ 2021-07-28 12:34
Bytezero!
阅读(78)
推荐(0)
编辑
摘要:
1 //输出两个字符 #include <stdio.h> 2 int main () 3 { 4 5 int NB = 789; 6 int CB = 333; 7 printf("NB的数字为:%d\n%d:是CB的数字\n",NB,CB); 8 }
阅读全文
posted @ 2021-07-28 12:33
Bytezero!
阅读(143)
推荐(0)
编辑
摘要:
1 //输出长方形的 长 宽 高 和 面积 2 3 #include <stdio.h> 4 int main () 5 { 6 float high = 1.23f; 7 float width = 4.23f; 8 float lengh = 5.56f; 9 10 float ice = hi
阅读全文
posted @ 2021-07-28 12:32
Bytezero!
阅读(232)
推荐(0)
编辑