blob: 08976b0ca4cbe259e40c641df317bd0f546aa89f (
plain) (
blame)
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
|
// Name: msglm
// Date:
// Program Name:
// Description:
#include <iostream>
#include <string>
#include <iomanip>
using namespace std;
//Function header (probably should be in a header file)
double celsius_to_fahrenheit(double temp);
double fahrenheit_to_celsius(double temp);
// Named constants
int main() {
//Variable declaration
double temp;
char format;
int choice;
//Program title and description for the user
cout << "Title: Fahrenheit-to-Celsius Converter" << endl << "Description: converts Fahrenheit to Celsius temperature and vice-versa" << endl;
do {
//If your tempurature is improper, allow fixing
if (!cin) {
cin.clear();
cin.ignore(100, '\n');
cout << "\033[2J\033[1;1H";
cout << "Your temp was improper, please retry\n";
}
// User input
cout << "Enter the Temperature" << endl;
cin >> temp;
cout << "Enter the format (C or F)" << endl;
cin >> format;
//Presumptious error handling since numbers are valid characters
if (format != 'c' || format != 'C' || format != 'f' || format != 'F') {
cout << "Format is improper. Assuming Celcius.\n";
format = 'C';
}
} while (!cin);
//Display input methods for first time
cout << "1. Convert Celsius to Fahrenheit\n";
cout << "2. Convert Fahrenheit to Celsius\n";
cout << "3. Display Choices\n";
do {
//Get user choice
cout << "Choice: ";
cin >> choice;
if (choice == 1) {
//Ensure this is actually C, if not, do nothing
if (format == 'C' || format == 'c') {
temp = celsius_to_fahrenheit(temp);
format = 'F';
}
} else if (choice == 2) {
//Ensure this is actually F, if not, do nothing
if (format == 'F' || format == 'f') {
temp = fahrenheit_to_celsius(temp);
format = 'C';
}
} else {
//Choices in case the user forgets
cout << "1. Convert Celsius to Fahrenheit\n";
cout << "2. Convert Fahrenheit to Celsius\n";
cout << "3. Display Choices\n";
}
//Output to screen
cout << "\nIt is currently " << temp << " degrees " << format << endl;
//Cold or Hot detection
if (( (format == 'F' || format == 'f') && temp <=32) || ( (format == 'C' || format == 'c') && temp <=0) ) {
cout << "Temperature is below freezing.\n";
} else if (( (format == 'F' || format == 'f') && temp >= 104) || ( (format == 'C' || format == 'c') && temp >=40) ) {
cout << "Temperature is incredibly hot.\n";
}
} while (cin);
}
//Functions
double celsius_to_fahrenheit(double temp) {
return temp*(1.8)+32;
}
double fahrenheit_to_celsius(double temp) {
return (temp-32)/(1.8);
}
/*This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
|