C++ program help?
I am trying to write a program that asks for two integers and then finds the greatest common factor between them. IN C++
I copy paste it and it doesn鈥檛 work? PLZz HELP
Thank you
......................................
#include <iostream>
using namespace std;
int factor(int a, int b);
int main()
{
int x, y;
cout << "This program allows calculating the factor\n";
cout << "Value 1: ";
cin >> x;
cout << "Value 2: ";
cin >> y;
cout << "\nThe Greatest Common factor of "
<< x << " and " << y << " is " << factor(x, y) << endl;
return 0;
}
int factor(int a, int b)
{
while( 1 )
{
a = a / b;
if( a == 0 )
return b;
b = b / a;
if( b == 0 )
return a;
}
}
C++ program help?
Hi your main() functions good and the idea behind how you work out the greatest common factor is also fine but you need to make sure when you do the division that the larger of the 2 numbers is divded by the other.
A simple check if a is greater than b allows you to know when to to divide a/b or b/a. The case where they are both equal to each other can be handled by either.
- C++......................?
- is there a less complicated c++ compiler than microsoft express 2008? i found it to complicated and hav found no other free program to make a fps. a t..
- C++???????
- I am trying to make a tic tac toe game for c++ but i dont know how to use an array to make the board. also after i make the board hiw do i code it so ..
- C++???????????????
- I HAVE NO IDEA WHAT C++ IS? and i have an exam tomorrow. I dont understand 1. character set 2.tokens. i also have the for statement program, if stat..
- C++..........................?
- where i find the best c++ programing books.C++..........................?AT www.esnips.com/C++..........................?Try doing a search. OReilly t..
- C++????????
- i need to know a simple program to concat two strings without using strcat inside operator overloading.plz help me with a program..............C++????..
- ...................c++?
- How would I create a program that that displays the sum of a sales amount in each of 4 regions, during a 3 month period, which would also display the ..
- "Smitfraud-C. Toolbar888&..
- I am a webmaster, and I am trying to build my website, but my computer keeps acting weird and seems to be going into random hybernation for no reason ..
- C programme...?
- I wrote a programme of calculator in C language. And it has two or three error so pl do correct them. And send me correct answer. Prog. is: #includest..
- C programme...?
- I wrote a programme of calculator in C language. And it has two or three error so pl do correct them. And send me correct answer. Prog. is: #includest..
- C programme...?
- I wrote a programme of calculator in C language. And it has two or three error so pl do correct them. And send me correct answer. Prog. is: #includest..
