- 博客(13)
- 收藏
- 关注
转载 作业
#include<stdio.h>struct Student//声明结构体类型struct student {int num; char name[20]; float score;};int main(){struct Student stu[5]={{10101,"Zhang",78},{10103,"Wang",98.5}...
2017-04-11 20:45:00 168
转载 有n个学生的信息(包括学号,姓名,成绩),要求按照成绩的高低顺序输出各学生的信息...
#include<stdio.h>struct Student//声明结构体类型struct student {int num; char name[20]; float score;};int main(){struct Student stu[5]={{10101,"Zhang",78},{10103,"Wang",98.5}...
2017-04-09 17:04:00 4570
转载 有n个结构变量,内含学生学号,姓名和3门课程的成绩。要求输出平均成绩的学生的信息...
#include<stdio.h># define N 3struct Student{int num; char name[20]; float score[3]; float aver;};int main(){ void input(struct Student stu[]); struct S...
2017-04-09 16:40:00 705
转载 有3个学生的信息,放在结构体数组中,要求输出全部学生信息
#include<stdio.h>struct Student//声明结构体类型struct student { int num; char name[20]; char sex; int age;};struct Student stu[3]={{10101,"LiLin",'M',18},{10102,"ZhangF...
2017-04-09 16:01:00 2805
转载 通过指向结构体变量的指针输出结构体变量中 成员信息
#include<stdio.h>#include<string.h>int main() {struct Student { long num; char name[22]; char sex; float score; }; struct Student stu_1;//...
2017-04-09 15:46:00 956
转载 有3个候选人,每个选民只能投票选一人,要求编一个统计选票的程序,先后输入被选人的名字和得票结果...
#include<stdio.h>#include<string.h>struct Person//声明结构体类型 { char name[20];//定义候选人姓名 int count;//定义候选人得票数 } leader[3]={"li",0,"zhang",0,"sun",0};//定义结构体数组并初始化 ...
2017-04-09 11:32:00 6625
转载 输入两个学生的学号,姓名和成绩,输出成绩较高的学生的学号,姓名和成绩...
#include<stdio.h>#include<stdlib.h>int main(){struct Student//声明结构体类型 { int num; char name[20]; float score; } student1,student2;//定义两个结构体变量 s...
2017-04-08 16:10:00 8236
转载 把一个学生的信息放在一个结构变量中,然后输出这个学生的信息
#include<stdio.h>#include<stdlib.h> int main() {struct Student//声明结构体类型 {long int num;//输出4行结构体的成员 char name[20]; char sex; char addr[20...
2017-04-08 15:38:00 915
转载 第三次作业
gitosc账号题目要求:定义一个包含有10个整数的数组a并初始化,定义一个指针变量p,p指向数组a,定义函数fun,在fun内部访问数组,并打印出数组中各元素的值,在fun函数内不要出现数字10.#include<stdio.h>void fun(int a[],int n) //定义的函数fun用来输出数组a { int i;...
2017-04-03 23:52:00 70
转载 补充作业
#include<stdio.h>#include<stdlib.h>#include<string.h>void funstr(char p[]) //定义函数funstr ,重新定义str为 p {int i; for(i=0;i<strlen(p);i++) //使用for循环 ,并使i小于p的长度 ,实现i++ {printf(...
2017-03-31 09:53:00 131
转载 第二次作业
#include<stdio.h>void swap(int *a,int *b);int main(){int a=1,b=2;int *p1,*p2;printf("%d %d\n",a,b);p1=&a;p2=&b;swap(p1,p2);}void swap(int *a,int *b){int ...
2017-03-22 21:46:00 131
转载 感想
对于学习计算机这个专业,并不是特别感兴趣,又或许因为接触的太少,懂得太少,所以越不会越不喜欢,同样感觉自己没有那种创新的能力。只能按照书本来进行,做不到举一反三。不过既然已经选择了,无论好与坏都要坚持下去。希望能够突然茅塞顿开,对这个专业的知识突然开窍。转载于:https://www.cnblogs.com/zuifengranmo/p/6572693.html...
2017-03-18 11:56:00 89
转载 通过指针实现对数组的遍历
#include<stdio.h>int main(){ int a[10]={0,1,2,3,4,5,6,7,8,9}; int *p; p=&a[0]; for(int i=0;i<10;i++) { printf("%d\t",*p++); }}转载于:https://www.cnblogs.com/zuifengranmo/p/6572541...
2017-03-18 11:39:00 196
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人