Update a4/program.c
This commit is contained in:
parent
810166a4f6
commit
9a3973e265
16
a4/program.c
16
a4/program.c
@ -1,6 +1,5 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
// Funkcia na overenie, či pole spĺňa podmienku binárnej minimálnej kopovitosti
|
// Funkcia na overenie, či pole spĺňa podmienku binárnej minimálnej kopovitosti
|
||||||
@ -43,13 +42,18 @@ int main() {
|
|||||||
int n = 0;
|
int n = 0;
|
||||||
|
|
||||||
// Načítanie vstupu
|
// Načítanie vstupu
|
||||||
|
// printf("Zadajte čísla oddelené medzerou: ");
|
||||||
|
// if (!fgets(input, sizeof(input), stdin)) {
|
||||||
|
// printf("Chyba pri načítaní vstupu.\n");
|
||||||
|
// return 1;
|
||||||
|
// }
|
||||||
|
|
||||||
// Parsovanie vstupu
|
// Parsovanie vstupu
|
||||||
char *token = strtok(input, " ");
|
char *ptr = input;
|
||||||
while (token) {
|
while (sscanf(ptr, "%d", &arr[n]) == 1) {
|
||||||
arr[n++] = atoi(token);
|
n++;
|
||||||
token = strtok(NULL, " ");
|
while (*ptr != ' ' && *ptr != '\0' && *ptr != '\n') ptr++; // Preskočiť číslo
|
||||||
|
if (*ptr == ' ') ptr++; // Preskočiť medzeru
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ak je na vstupe len jedno číslo
|
// Ak je na vstupe len jedno číslo
|
||||||
|
Loading…
Reference in New Issue
Block a user