Aktualizovat "program.c
This commit is contained in:
parent
d40b2698b7
commit
588e2cf430
17
program.c
17
program.c
@ -19,19 +19,20 @@ long long int nsd(long long int cislo1,long long int cislo2){
|
||||
return nsd(cislo2 % cislo1, cislo1);
|
||||
}
|
||||
int main() {
|
||||
//freopen("vstup.txt","r",stdin);
|
||||
freopen("vstup.txt","r",stdin);
|
||||
char* prvy_vstup = malloc(100* sizeof(char));
|
||||
char* druhy_vstup = malloc(100* sizeof(char));
|
||||
long long int prve_cislo;
|
||||
long long int druhe_cislo;
|
||||
|
||||
fgets(prvy_vstup,100,stdin);
|
||||
strtok(prvy_vstup,"\n");
|
||||
if (!isdigit(*prvy_vstup)){
|
||||
printf("%s je neplatny zapis.\n",prvy_vstup);
|
||||
goto koniec;
|
||||
} else{
|
||||
printf("Nacitane %llu\n",prve_cislo = strtoll(prvy_vstup,NULL,0));
|
||||
if (fgets(prvy_vstup,100,stdin)){
|
||||
strtok(prvy_vstup,"\n");
|
||||
if (!isdigit(*prvy_vstup)){
|
||||
printf("%s je neplatny zapis.\n",prvy_vstup);
|
||||
goto koniec;
|
||||
} else{
|
||||
printf("Nacitane %llu\n",prve_cislo = strtoll(prvy_vstup,NULL,0));
|
||||
}
|
||||
}
|
||||
|
||||
while((fgets(druhy_vstup,100,stdin))){
|
||||
|
Loading…
Reference in New Issue
Block a user