Видалити 'program.c'
This commit is contained in:
parent
80ce63f15b
commit
3b5b67b952
30
program.c
30
program.c
@ -1,30 +0,0 @@
|
|||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
#define SIZE 100
|
|
||||||
|
|
||||||
int main() {
|
|
||||||
double coefs[SIZE] = {0.0};
|
|
||||||
double x = 0.0;
|
|
||||||
double input = 0.0;
|
|
||||||
int count = 0;
|
|
||||||
int length = 0;
|
|
||||||
double result = 0.0;
|
|
||||||
|
|
||||||
while (count < SIZE && scanf("%lf", &input) == 1) {
|
|
||||||
coefs[count] = input;
|
|
||||||
count++;
|
|
||||||
//hello
|
|
||||||
}
|
|
||||||
|
|
||||||
x = coefs[0];
|
|
||||||
|
|
||||||
length = count;
|
|
||||||
|
|
||||||
for (int i = 1; i < length; i ++){
|
|
||||||
result = result * x + coefs[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("Vysledok je: %.2lf\n", result);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user