Aktualizovat „du5/program.c“
This commit is contained in:
parent
65fd275261
commit
d451b44d26
@ -1,27 +1,21 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include <poll.h>
|
||||
|
||||
int main(){
|
||||
struct pollfd mypoll = { STDIN_FILENO, POLLIN|POLLPRI };
|
||||
char name[50][50];
|
||||
int score[50];
|
||||
int pos = 0;
|
||||
char cmpStr[] = "Thrad Zex'lek";
|
||||
//Getting input
|
||||
for(int i = 0; i < 50; i++){
|
||||
if( poll(&mypoll, 1, 3000)){
|
||||
while(1){
|
||||
scanf("%d %[^\n]", &score[pos], name[pos]);
|
||||
scanf("%*c");
|
||||
pos++;
|
||||
if(strcmp(name[pos - 1], cmpStr) == 0) break;
|
||||
int tmpCh = getc(stdin);
|
||||
if(tmpCh == '\n') break;
|
||||
ungetc(tmpCh, stdin);
|
||||
}
|
||||
else{
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
char newName[50][50];
|
||||
int newScore[50];
|
||||
|
Loading…
Reference in New Issue
Block a user