首页
友情链接
归档
留言板
Tea Blog
岁月本长,而忙者自促,天地本宽,而鄙者自隘,风花雪月本闲,而扰攘者自冗。
累计撰写
23
篇文章
累计创建
7
个标签
累计收到
1
条评论
栏目
首页
友情链接
归档
留言板
目 录
CONTENT
代码-Tea Blog
以下是
代码
相关的文章
2024-09-23
C语言第七个程序:注释
#include<stdio.h> int main() { //C++的注释风格,两个斜杠代表注释,但是C语言也可 //但是只能注释一行,可以通过快捷键注释多行 /* C语言的注释风格斜杠**斜杠,好处是可以注释很多行 但是不可以嵌套注释,所以建议使用C++的注释风格 */ //1、
2024-09-23
0
0
0
代码
2024-09-22
C语言第六个程序:转义字符——深入使用printf函数
#include<stdio.h> int main() { printf("abcdefg\n"); // \n是换行转义字符 printf("abcd\0efg"); // \0是字符串的终止所以只会打印abcd printf("66\"66\\66\'66\n"); //如果需要打
2024-09-22
2
0
0
代码
2024-09-22
C语言第五个程序:字符串
#include<stdio.h> #include<string.h> //C语言中没有字符串类型,通过字符数组储存 int main() { char arr1[] = "abcdef"; //字符串的结束标志是 \0,但是被隐藏了,不属于字符串的内容 char arr2[] = { 'a
2024-09-22
0
0
0
代码
2024-09-22
C语言第四个程序:常量
#include<stdio.h> //1、字面常量 //2、const修饰的常变量 //define 定义的标识符常量 #define MAX 666//define要定义在main函数外 //4、枚举常量 int main() { //1、字面常量 30; 3.14; "abc"; '
2024-09-22
2
0
1
代码
2024-09-21
C语言第三个程序:变量
#include<stdio.h> int b = 20;//全局变量 int a = 200; int main() { int a = 20;//局部变量 printf("%d", a); //当全局变量和局部变量名字相同的时候,局部变量优先 //但是不建议将全局变量和局部变量取相同的名
2024-09-21
4
0
0
代码
2024-09-21
C语言第二个程序:数据结构在计算机中的大小
#include<stdio.h> int main() { printf("%d\n", sizeof(char));// 1byte printf("%d\n", sizeof(short));// 2byte printf("%d\n", sizeof(int)); // 4byte
2024-09-21
6
0
0
代码
2024-09-20
C语言第一个程序:Hello World
#include<stdio.h> int main() { printf("hello world!\n"); return 0; } 1、#include<stdio.h> 包含头文件,std是标准的意思,i是input输入,o是output输出,包含标准的输入输出流 2、int main(
2024-09-20
2
0
1
代码
2024-09-04
C++职工管理系统代码
#include<iostream> #include<string> using namespace std; //职工抽象类 class Worker { public: //显示个人信息 virtual void ShowInfo() = 0; //获取岗位名称 virtual str
2024-09-04
16
0
2
代码
1
2