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