48 lines
780 B
C
48 lines
780 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#include <math.h>
|
|
#define LINE_SIZE 10
|
|
int main(){
|
|
char riadok[LINE_SIZE];
|
|
memset(riadok, 0,LINE_SIZE);
|
|
char* r;
|
|
float r2;
|
|
int stop = 0;
|
|
float mass[LINE_SIZE];
|
|
int i = 0;
|
|
float x = 0;
|
|
float vysl = 0;
|
|
int counter = -1;
|
|
float h = 0;
|
|
while(stop == 0){
|
|
r = fgets(riadok,LINE_SIZE,stdin);
|
|
assert(r!=NULL);
|
|
r2 = atof(riadok);
|
|
mass[i] = r2;
|
|
//printf("%.2f\n", r2);
|
|
i++;
|
|
if (r2 == 0){
|
|
//printf("Konverzia sa nepodarila alebo v reťazci sa nachádza nula.\n");
|
|
stop++;
|
|
}
|
|
}
|
|
x = mass[0];
|
|
//printf("%d\n", x);
|
|
for(int j = i - 2; j > 0; j--){
|
|
counter++;
|
|
h = mass[j];
|
|
//printf("%d ", h);
|
|
if(j != 0){
|
|
if(counter != 0){
|
|
vysl += h * powl(x,counter);
|
|
}
|
|
else{
|
|
vysl += h;
|
|
}
|
|
}
|
|
}
|
|
printf("Vysledok je: %.2f\n", vysl);
|
|
}
|