自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 结构体

/* Note:Your choice is C IDE */ #include "stdio.h" #include "string.h" /*define a struct type */ struct student { int no; int age; /*结构体类型的定义*/ int score; }; main() { int i; int a

2014-06-10 21:09:02 231

原创 结构体练习

/* Note:Your choice is C IDE */ #include "stdio.h" struct stu_rec { char name[15]; float iscore; }; int main(void) { struct stu_rec student; printf("please enter the names.\n"); gets(student.na

2014-05-27 20:45:16 220

转载 week-13

/* Note:Your choice is C IDE */ #include "stdio.h" #define N 45 int inputss(char names[][20],int score[],int num); void printss(char names[][20],int score[],int num); void getMAX(char names[][20],int

2014-05-20 21:15:38 213

原创 week-9

/* Note:Your choice is C IDE */ #include "stdio.h" #include "math.h" double add(double x,double y){ double result; result=sqrt(x*x+y*y); return result; } void main() { float x,y,resu

2014-04-22 20:54:23 222

原创 week 8

定义一个100长度的整型数组,使用rand函数生产随机数对每个元素进行赋值,顺序遍历该数组,输出所有值大于50的数。输出格式例子为: a[1]=100 a[5]=70 a[20]=90

2014-04-15 20:50:37 174

原创 清明作业

/* Note:Your choice is C IDE */ #include "stdio.h" main() { int x; scanf("%d",&x); printf("%o\n",x); printf("%d\n",x); printf("%x\n",x); }

2014-04-07 21:13:02 251

空空如也

空空如也

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

TA关注的人

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