摘要: ``` include using namespace std; class Box { public: double length; // 长度 double breadth; // 宽度 double height; // 高度 }; int main( ) { Box Box1; // 声明 阅读全文
posted @ 2019-03-13 19:18 luoganttcc 阅读(91) 评论(0) 推荐(0) 编辑
摘要: ``` include include using namespace std; // 声明一个结构体类型 Books struct Books { char title[50]; char author[50]; char subject[100]; int book_id; }; int mai 阅读全文
posted @ 2019-03-13 19:08 luoganttcc 阅读(113) 评论(0) 推荐(0) 编辑
摘要: ff 阅读全文
posted @ 2019-03-13 19:04 luoganttcc 阅读(137) 评论(0) 推荐(0) 编辑
摘要: ``` include using namespace std; int main() { char name[50]; cout name; cout 阅读全文
posted @ 2019-03-13 18:56 luoganttcc 阅读(105) 评论(0) 推荐(0) 编辑
摘要: ``` include using namespace std; int main () { int var; int ptr; int pptr; var = 3000; // 获取 var 的地址 ptr = &var; // 使用运算符 & 获取 ptr 的地址 pptr = &ptr; // 阅读全文
posted @ 2019-03-13 13:59 luoganttcc 阅读(318) 评论(0) 推荐(0) 编辑
摘要: ``` include using namespace std; const int MAX = 3; int main () { int var[MAX] = {10, 100, 200}; int ptr; // 指针中的数组地址 // 数组名是数组的首地址 ptr = var; for (in 阅读全文
posted @ 2019-03-13 13:57 luoganttcc 阅读(431) 评论(0) 推荐(0) 编辑
摘要: ``` include using namespace std; int main () { int var = 20; // 实际变量的声明 int ip; // 指针变量的声明 ip = &var; // 在指针变量中存储 var 的地址 cout 阅读全文
posted @ 2019-03-13 13:53 luoganttcc 阅读(109) 评论(0) 推荐(0) 编辑
摘要: ``` include using namespace std; int main () { int var1; char var2[10]; cout 阅读全文
posted @ 2019-03-13 13:50 luoganttcc 阅读(72) 评论(0) 推荐(0) 编辑
摘要: ``` include include using namespace std; int main () { string str1 = "Hello"; string str2 = "World"; string str3; int len ; // 复制 str1 到 str3 str3 = s 阅读全文
posted @ 2019-03-13 13:42 luoganttcc 阅读(104) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int main (){ char greeting[6] = {'H', 'e', 'l', 'l', 'o', '\0'}; cout #include using namespa... 阅读全文
posted @ 2019-03-13 13:01 luoganttcc 阅读(70) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;#include using std:: setw;int main(){ int n[10]; //初始化数组元素 for (int i=0;i<10;i++) { n[... 阅读全文
posted @ 2019-03-13 12:28 luoganttcc 阅读(96) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std;int main(){ int i,j; srand( (unsigned)time(NULL)); /*生成10个随机数*/ for (i=0;i... 阅读全文
posted @ 2019-03-13 11:57 luoganttcc 阅读(85) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std; int main (){ // 数字定义 short s = 10; int i = -1000; long l = 100000; float ... 阅读全文
posted @ 2019-03-13 11:37 luoganttcc 阅读(132) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;int main (){ // 数字定义 short s; int i; long l; float f; double d; // 数字赋值 s = 1... 阅读全文
posted @ 2019-03-13 11:34 luoganttcc 阅读(86) 评论(0) 推荐(0) 编辑
摘要: static 存储类static 存储类指示编译器在程序的生命周期内保持局部变量的存在,而不需要在每次它进入和离开作用域时进行创建和销毁。因此,使用 static 修饰局部变量可以在函数调用之间保持局部变量的值。static 修饰符也可以应用于全局变量。当 ... 阅读全文
posted @ 2019-03-13 11:24 luoganttcc 阅读(209) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;/* * 这个程序演示了有符号整数和无符号整数之间的差别*/int main(){ short int i; // 有符号短整数 short unsigned int j... 阅读全文
posted @ 2019-03-13 11:21 luoganttcc 阅读(257) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;#define LENGTH 10 #define WIDTH 5#define NEWLINE '\n'int main(){ int area; area = LENGTH * WI... 阅读全文
posted @ 2019-03-13 11:18 luoganttcc 阅读(83) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;// 全局变量声明int g = 20;int main (){ // 局部变量声明 // cout << g ; int g = 10; cout << g; return 0;} ... 阅读全文
posted @ 2019-03-13 10:59 luoganttcc 阅读(68) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;//变量声明extern int a,b;extern int c;extern float f;int main(){ //变量定义 int a,b; int c ; float f; a... 阅读全文
posted @ 2019-03-13 10:52 luoganttcc 阅读(104) 评论(0) 推荐(0) 编辑