From ea7bcf8224e80a32540c607fe9feab7899c0d42c Mon Sep 17 00:00:00 2001 From: Mihail Date: Mon, 27 May 2024 12:30:54 +0300 Subject: [PATCH] =?UTF-8?q?main:=20=D1=82=D0=B8=D0=BF=20=D0=B4=D0=B0=D0=B1?= =?UTF-8?q?=D0=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 55026f1..2a3bd9b 100644 --- a/main.cpp +++ b/main.cpp @@ -7,7 +7,7 @@ using namespace std; int main() { cout << "Enter A and B: "; - int a, b; + double a, b; cin >> a >> b; vector numbers = {a-b, a*b, a/b}; int maxx = numbers[0];