From 8fd4d1e547a9a4abfde83ca32ebb96fbbb0f598d Mon Sep 17 00:00:00 2001 From: Md Ansar Hussain <91614411+MdAnsar7@users.noreply.github.com> Date: Sat, 19 Oct 2024 18:10:47 +0530 Subject: [PATCH] Create quadratic_equation.cpp --- Add Code Here/quadratic_equation.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Add Code Here/quadratic_equation.cpp diff --git a/Add Code Here/quadratic_equation.cpp b/Add Code Here/quadratic_equation.cpp new file mode 100644 index 00000000000..ef575e1c5b2 --- /dev/null +++ b/Add Code Here/quadratic_equation.cpp @@ -0,0 +1,25 @@ +#include +using namespace std; + +int main() { + int n1, n2, hcf; + cout << "Enter two numbers: "; + cin >> n1 >> n2; + + // swapping variables n1 and n2 if n2 is greater than n1. + if ( n2 > n1) { + int temp = n2; + n2 = n1; + n1 = temp; + } + + for (int i = 1; i <= n2; ++i) { + if (n1 % i == 0 && n2 % i ==0) { + hcf = i; + } + } + + cout << "HCF = " << hcf; + + return 0; +}