自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 收藏
  • 关注

原创 example11.7.cpp 简单链表 dev-c++操作一直无法运行

#include #include #include #define NULL 0 using namespace std; struct student{        int num;        //char name[10];        int score;        struct student * next;        }; int main(){

2014-09-07 09:32:37 478

原创 spring advice&pointcut&advisor

applicationContext.xml配置文件 观看视频 Java 3单元 Spring 框架-20121212 http://www.169it.com/article/17951344164798948250.html

2015-04-16 12:06:13 236

原创 scanf输入数据.cpp

#include using namespace std; int main(){   int a,b; float c,d;char e,f;   scanf("a=%d,b=%d",&a,&b);   scanf("c=%f,d=%e",&c,&d);   scanf("e=%c,f=%c",&e,&f);   system("pause");   return(0);

2014-09-07 09:28:17 711

原创 example13.5.cpp fseek fread

#include using namespace std; struct student_type {        char name[10];        int num;        int age;        char sex;             }stud[10]; int main() {     int i;     FILE *fp;   

2014-09-07 09:27:15 283

原创 example13.5f.cpp fopen fclose

#include using namespace std; struct student_type {        char name[10];        int num;        int age;        char sex;        }stud[2]={{"zhang",1001,23,'m'},{"wang",1002,22,'f'}};       

2014-09-07 09:25:26 292

原创 example11.3.cpp 指针变量指向结构体变量

#include using namespace std; int main() {     struct lover {        int num;        char name[10];        int age;            }beauty={001,"lily",22}; strcpy(beauty.name,"chenfang"); st

2014-09-07 09:21:38 283

原创 example11.4.cpp

#include using namespace std; int main() {      struct lover {        int num;        char name[10];        int age;            }beauty[2]={{1,"lily",22},{2,"chengfang",21}};     struct lo

2014-09-07 09:21:29 230

原创 选票计算.cpp

#include using namespace std; struct task {        char name[10];//候选人名        int count; //得到的选票数        }cand[2]={{"liting",0},{"haier",0}};           int main() {     int i,j;    ch

2014-09-07 09:19:55 383

原创 游客选座.cpp

#include using namespace std; int main() {     int seatCount;               // 这排的座位数     int twoBank,oneBank,nonBank;//twoBank指两边都有空 ,oneBank指一边有座位,nonBank指两边都没空。     printf("Please input the

2014-09-07 09:15:52 321

原创 example11.5.cpp 结构体指针变量做函数形参

#include #define FORMAT "%d\n%s\n%d\n%d\n%d" using namespace std; struct student_type{            int num;            char name[10];            int score[3];             }; int main(){     vo

2014-09-07 09:11:29 461

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除