-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhw10.c
129 lines (109 loc) · 2.43 KB
/
hw10.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// modify (04/03/2019) by Kay to get the correct value of mean
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdbool.h>
typedef struct
{
double mantissa;
int exponent;
} sciNotation;
sciNotation convert(double num); // converts a double to scientific notation
sciNotation meanVal(sciNotation arr[], int len); // computes the mean value of the array and returns mean in scientific notation
void printVal(sciNotation *num); // prints a number in scientific notation
int main(void)
{
// main function code here
sciNotation convertedNum[10], meanNum;
double num;
bool loop = false;
char answerloop;
int i = 0;
while (loop != true)
{
printf("Enter a value: \n");
scanf("%lf", &num);
convertedNum[i] = convert(num);
printVal(&convertedNum[i]);
printf("Do you want to enter another value (y/n)?\n");
scanf(" %c", &answerloop);
i++;
if (answerloop == 'y')
{
loop = false;
}
else if (answerloop == 'n')
{
loop = true;
}
}
if (loop == true)
{
meanNum = meanVal(convertedNum, i);
printVal(&meanNum);
}
return 0;
}
sciNotation convert(double num)
{
// conversion function.
sciNotation sciConvert;
int i = 0;
if (num > 9)
{
while (num > 10)
{
num = num / 10;
i++;
}
}
else if (num < 1)
{
while (num < 1 && num > 0)
{
num = num * 10;
i--;
}
}
sciConvert.mantissa = num;
sciConvert.exponent = i;
return sciConvert;
}
sciNotation meanVal(sciNotation arr[], int len)
{
// mean computation function
sciNotation mean;
int tempArray[len];
double tempVal = 0;
for (int i = 0; i < len; i++)
{
tempArray[i] = arr[i].mantissa * pow(10, arr[i].exponent);
}
for (int i = 0; i < len; i++)
{
tempVal += tempArray[i];
}
tempVal /= len;
int j = 0;
while (tempVal > 10)
{
tempVal = tempVal / 10;
j++;
}
mean.mantissa = tempVal;
mean.exponent = j;
return mean;
}
void printVal(sciNotation *num)
{
// printing function
printf("%lf", num->mantissa);
if (num->exponent <= 0)
{
printf("E%d\n", num->exponent);
}
else
{
printf("E+%d\n", num->exponent);
}
}