diff --git a/BasicIO.cpp b/BasicIO.cpp index 9b125b7..4545356 100644 --- a/BasicIO.cpp +++ b/BasicIO.cpp @@ -4,7 +4,7 @@ using namespace std; int main() { float gallons, liters; - float constConv = 3.7854; + float constConv = 7.5; cout << "Enter number of gallons: "; cin >> gallons; // Read the inputs from the user diff --git a/switch.cpp b/switch.cpp index 46b00d5..3fed992 100644 --- a/switch.cpp +++ b/switch.cpp @@ -26,7 +26,7 @@ int main() cout << "You entered 5."; break; default: - cout << "Invalid input."; + cout << "edited in dev."; } return 0;