Изменить 'du6/program.c'
This commit is contained in:
parent
008d2bd439
commit
404689b795
@ -8,6 +8,8 @@ char fname[100];
|
|||||||
int num;
|
int num;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
int spase=0;
|
||||||
|
|
||||||
char keep(struct LIS*,int);
|
char keep(struct LIS*,int);
|
||||||
void sort(struct LIS*,int);
|
void sort(struct LIS*,int);
|
||||||
void print(struct LIS*,int,int);
|
void print(struct LIS*,int,int);
|
||||||
@ -34,10 +36,11 @@ else{
|
|||||||
|
|
||||||
char keep(struct LIS* list,int places){
|
char keep(struct LIS* list,int places){
|
||||||
int count=0;
|
int count=0;
|
||||||
char names[100];
|
|
||||||
for(;fgets(list[count].fname,100,stdin);){
|
for(;fgets(list[count].fname,100,stdin);){
|
||||||
if(list[count].fname[0]=='\n'){
|
if(list[count].fname[0]=='\n'){
|
||||||
|
spase++;
|
||||||
list[count].num=-1;
|
list[count].num=-1;
|
||||||
|
|
||||||
}
|
}
|
||||||
if(list[count].fname[0]!='\n'){
|
if(list[count].fname[0]!='\n'){
|
||||||
list[count].num=0;
|
list[count].num=0;
|
||||||
@ -72,7 +75,7 @@ void print(struct LIS *list,int count,int places){
|
|||||||
if(count>0){
|
if(count>0){
|
||||||
if(places>0){
|
if(places>0){
|
||||||
printf("Prijati studenti:\n");
|
printf("Prijati studenti:\n");
|
||||||
for(int i=0;i<count+count;i++){
|
for(int i=0;i<count*2;i++){
|
||||||
if(list[i].num>0){
|
if(list[i].num>0){
|
||||||
fputs(list[i].fname,stdout);
|
fputs(list[i].fname,stdout);
|
||||||
}
|
}
|
||||||
@ -80,7 +83,7 @@ void print(struct LIS *list,int count,int places){
|
|||||||
}
|
}
|
||||||
if(count-places>0){
|
if(count-places>0){
|
||||||
printf("Neprijati studenti:\n");
|
printf("Neprijati studenti:\n");
|
||||||
for(int i=0;i<count+count;i++){
|
for(int i=0;i<count*2;i++){
|
||||||
if(list[i].num==0){
|
if(list[i].num==0){
|
||||||
fputs(list[i].fname,stdout);
|
fputs(list[i].fname,stdout);
|
||||||
}
|
}
|
||||||
@ -90,6 +93,9 @@ void print(struct LIS *list,int count,int places){
|
|||||||
}
|
}
|
||||||
void AAAAA(struct LIS* list, int count,int places){
|
void AAAAA(struct LIS* list, int count,int places){
|
||||||
int k=1;
|
int k=1;
|
||||||
|
if(spase==1){
|
||||||
|
places++;
|
||||||
|
}
|
||||||
for(int i=0;i<100;i++){
|
for(int i=0;i<100;i++){
|
||||||
if(k!=places+1){
|
if(k!=places+1){
|
||||||
if(list[i].num==0){
|
if(list[i].num==0){
|
||||||
@ -108,5 +114,33 @@ void AAAAA(struct LIS* list, int count,int places){
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user