From eac397d3c783bce4c4b2de8899a5b2c4c003c277 Mon Sep 17 00:00:00 2001 From: yousefabdalla11 <2021170637@cis.asu.edu.eg> Date: Sat, 16 Dec 2023 23:25:42 +0200 Subject: [PATCH] changed const --- BasicIO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BasicIO.cpp b/BasicIO.cpp index 9b125b7..1c07c04 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 = 4.5; cout << "Enter number of gallons: "; cin >> gallons; // Read the inputs from the user