-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConversions.cpp
63 lines (53 loc) · 1.32 KB
/
Conversions.cpp
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
// Conversions
// https://algospot.com/judge/problem/read/CONVERT
#include <stdio.h>
#include <string.h>
double convertUnit(double originalValue, char* unit);
int main()
{
int nDataSet = 0;
double originalValue = 0.0;
double convertedValue = 0.0;
char unit[2 + 1];
// Get number of data sets
scanf_s("%d", &nDataSet);
for (int i = 0; i < nDataSet; i++)
{
// Get original value and unit
scanf_s("%lf %s", &originalValue, unit, 3);
// Convert as forwarded unit
convertedValue = convertUnit(originalValue, unit);
// Print out converted value and unit
printf("%d %.4lf %s\n", (i + 1), convertedValue, unit);
}
return 0;
}
double convertUnit(double originalValue, char* unit)
{
double convertedValue = 0.0;
if (strncmp(unit, "kg\0", sizeof(unit)) == 0)
{
// Kilogram to pound
convertedValue = originalValue * 2.2046;
strcpy_s(unit, 3, "lb");
}
else if (strncmp(unit, "lb\0", sizeof(unit)) == 0)
{
// Pound to kilogram
convertedValue = originalValue * 0.4536;
strcpy_s(unit, 3, "kg");
}
else if (strncmp(unit, "l\0", sizeof(unit)) == 0)
{
// Liter to gallon
convertedValue = originalValue * 0.2642;
strcpy_s(unit, 2, "g\0");
}
else if (strncmp(unit, "g\0", sizeof(unit)) == 0)
{
// Gallon to liter
convertedValue = originalValue * 3.7854;
strcpy_s(unit, 2, "l\0");
}
return convertedValue;
}