Изменить 'du6/program.c'
This commit is contained in:
parent
b52678e9f4
commit
5e526dd7e0
@ -70,9 +70,9 @@ void print(struct LIS *list,int count,int places){
|
||||
if(count>0){
|
||||
if(places>0){
|
||||
int i=0;
|
||||
int k=1;
|
||||
int k=0;
|
||||
printf("Prijati studenti:\n");
|
||||
for(int i=0;k!=places+1;i++){
|
||||
for(int i=0;k!=places;i++){
|
||||
if(list[i].num==0){
|
||||
fputs(list[i].fname,stdout);
|
||||
k++;
|
||||
@ -81,7 +81,7 @@ void print(struct LIS *list,int count,int places){
|
||||
}
|
||||
if(count-places>0){
|
||||
printf("Neprijati studenti:\n");
|
||||
for(int i=(count-places)+2;i<30;i++){
|
||||
for(int i=(count-places)+1;i<30;i++){
|
||||
if(list[i].num==0){
|
||||
fputs(list[i].fname,stdout);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user