2024-03-03 15:01:11 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#define SIZE_OF_ARRAY 100
|
|
|
|
#define LINE_SIZE 2
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2024-03-03 15:47:37 +00:00
|
|
|
float result_of_main=0;
|
|
|
|
float array_of_numbers[SIZE_OF_ARRAY];
|
|
|
|
int counter=0;
|
|
|
|
int result;
|
2024-03-03 16:40:44 +00:00
|
|
|
float pow_result;
|
2024-03-03 15:47:37 +00:00
|
|
|
while(1){
|
|
|
|
float x=0;
|
|
|
|
result=reading_input(&x);
|
|
|
|
if(result==0||result==2){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
array_of_numbers[counter]=x;
|
|
|
|
counter++;
|
2024-03-03 15:01:11 +00:00
|
|
|
}
|
|
|
|
if(result==0){
|
|
|
|
return 0;
|
|
|
|
}
|
2024-03-03 15:47:37 +00:00
|
|
|
for(int j=1; j<counter; j++){
|
2024-03-03 16:40:44 +00:00
|
|
|
float rawPow = pow(array_of_numbers[0],(counter-j)-1);
|
|
|
|
float roundedPos = round(rawPow*100)/100;
|
|
|
|
//printf("RAW: %f, ROUNDED: %f\n", rawPow, roundedPos);
|
|
|
|
|
|
|
|
result_of_main += array_of_numbers[j]*rawPow;
|
2024-03-03 15:01:11 +00:00
|
|
|
}
|
2024-03-03 16:40:44 +00:00
|
|
|
|
2024-03-03 16:41:49 +00:00
|
|
|
printf("Vysledok je: %.2f\n",round(result_of_main * 100) / 100);
|
2024-03-03 15:01:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2024-03-03 16:40:44 +00:00
|
|
|
//ceil(result_of_main * 100) / 100)
|
2024-03-03 15:01:11 +00:00
|
|
|
int reading_input(float *number){
|
|
|
|
char buffer[SIZE_OF_ARRAY];
|
|
|
|
fgets(buffer,SIZE_OF_ARRAY,stdin);
|
|
|
|
for(int j=0; buffer[j]!='\0'; j++){
|
|
|
|
if (buffer[j]>='0'&&buffer[j]<='9') {
|
|
|
|
continue;
|
|
|
|
}
|
2024-03-03 15:47:37 +00:00
|
|
|
if (buffer[j]=='.') {
|
2024-03-03 15:01:11 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(buffer[j]=='\n'){
|
|
|
|
buffer[j]='\0';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
printf("You have entered wrong number.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2024-03-03 15:47:37 +00:00
|
|
|
if(buffer[0]=='\0'){
|
|
|
|
return 2;
|
|
|
|
}
|
2024-03-03 15:01:11 +00:00
|
|
|
*number=atof(buffer);
|
|
|
|
return 1;
|
|
|
|
}
|
2024-03-03 16:40:44 +00:00
|
|
|
|