02 2016 档案

摘要:1 #include <iostream> 2 #include "stdlib.h" 3 using namespace std; 4 5 void Show() 6 { 7 cout<<"CIS 25 – C++ Programming \n"; 8 cout<<"Laney College \ 阅读全文
posted @ 2016-02-25 22:18 指间ゝ繁华初逝的格调 阅读(197) 评论(0) 推荐(0)
摘要:1 #include"stdio.h" 2 #include"stdlib.h" 3 #include"string.h" 4 #include"time.h" 5 6 #define LIST_INIT_SIZE 50000 7 int bj1,yd1,bj2,yd2,bj3,yd3,bj4,yd 阅读全文
posted @ 2016-02-24 21:36 指间ゝ繁华初逝的格调 阅读(291) 评论(0) 推荐(0)
摘要:1 #include <stdio.h> 2 #include <stdlib.h> 3 4 #define Maxlen 100 //定义输入字符的长度 5 6 //顺序栈 7 typedef struct 8 { 9 char data[Maxlen];//存储字符 10 int top; 11 阅读全文
posted @ 2016-02-24 14:42 指间ゝ繁华初逝的格调 阅读(257) 评论(0) 推荐(0)
摘要:1 #include "stdio.h" 2 #include "string.h" 3 #include "malloc.h" 4 5 struct Student{ 6 char Stu_Number[20];//学号 7 char Stu_Name[10];//姓名 8 char Stu_Be 阅读全文
posted @ 2016-02-23 16:18 指间ゝ繁华初逝的格调 阅读(498) 评论(0) 推荐(0)
摘要:c语言 #include <stdio.h> 完整的stdio.h ==》standard input/output #include <string.h>是关于字符数组的函数定义的头文件,常用函数有strlen/strcmp/strcpy等等 #include <malloc.h>动态存储分配 i 阅读全文
posted @ 2016-02-21 21:03 指间ゝ繁华初逝的格调 阅读(130) 评论(0) 推荐(0)