Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BasicIO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion switch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ int main()
cout << "You entered 5.";
break;
default:
cout << "Invalid input.";
cout << "edited in dev.";
}

return 0;
Expand Down