Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
Hi! I'm asked to add more variables (3 and 4) to my C++ code. I only made with 2, can someone help me?
+1
vote
asked
Oct 31, 2021
by
Vlad Casnitov B-2112
(
130
points)
#include <iostream>
using namespace std;
int main()
{
int n, m;
cin >> n >> m;
while(n != m)
if(n > m)
n -= m;
else
m -= n;
cout << n << endl;
return 0;
}
Please
log in
or register to answer this question.
1 Answer
0
votes
answered
Nov 1, 2021
by
Areeb Sherjil
(
2,050
points)
What are you trying to accomplish? If you want to add more variables that is:
int n{}, m{},p{},q{};
std::cin >> n >> m>>p>>q;
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...