Aktualizovat "program.c
This commit is contained in:
parent
88bc871aa6
commit
912b504b8b
12
program.c
12
program.c
@ -1,9 +1,18 @@
|
||||
#include <stdio.h>
|
||||
#include "stdlib.h"
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
|
||||
int main() {
|
||||
char* prve_cislo = malloc(100* sizeof(char));
|
||||
char* druhe_cislo = malloc(100* sizeof(char));
|
||||
fgets(prve_cislo,100,stdin);
|
||||
if (isalpha(*prve_cislo)){
|
||||
printf("%s je neplatny zapis.\n",prve_cislo);
|
||||
free(prve_cislo);
|
||||
free(druhe_cislo);
|
||||
return 0;
|
||||
|
||||
}
|
||||
int cislo1 = strtof(prve_cislo,NULL);
|
||||
int cislo2;
|
||||
while((fgets(druhe_cislo,100,stdin))){
|
||||
@ -20,4 +29,5 @@ int main() {
|
||||
}
|
||||
|
||||
free(prve_cislo);
|
||||
free(druhe_cislo);
|
||||
}
|
Loading…
Reference in New Issue
Block a user