This commit is contained in:
Patrik Seman 2023-03-11 11:46:52 +01:00
parent bceaabe49c
commit d87e7f21a9
2 changed files with 41 additions and 2 deletions

View File

@ -12,8 +12,8 @@ int main(){
int max_hrac = 0; int max_hrac = 0;
int value = 0; int value = 0;
int r = 0; int r = 0;
int najlepsi[VELKOST_POLA]; //int najlepsi[VELKOST_POLA];
int k=0; //int k=0;
while(i < VELKOST_POLA){ while(i < VELKOST_POLA){
value = 0; value = 0;
r = scanf("%d", &value); r = scanf("%d", &value);

39
du3/program.c Normal file
View File

@ -0,0 +1,39 @@
#include <stdio.h>
#include <stdlib.h>
#define LINE_SIZE 10
int main(){
float line[LINE_SIZE];
int count;
char buffer[50];
for(count = 0; count < LINE_SIZE; count++){
if(fgets(buffer, 50, stdin) == NULL || buffer[0] == '\n'){
break;
}
int success = sscanf(buffer, "%f", &line[count]);
if(success == 0 || success == EOF){
if(count == 0){
printf("Nepodarilo sa nacitat x.\n");
}else{
printf("Nepodarilo sa nacitat %d. koeficient\n", count);
}
return 0;
}
}
float result = 0;
float x = line[0];
for(int i = 1; i < count; i++){
result = result * x + line[i];
}
printf("Vysledok je: %.2f\n", result);
}