i'm trying to write a program that takes two numbers from the user prints out the sequence between the 2 numbers and then outputs wthe longest sequence

for example if the user inputed 8 and 10

it should out put

8 4 2 1
9 28 14 7 22 11 34 17 52 26 13 40 20 10 5 16 8 4 2 1
10 5 16 8 4 2 1

i got the code as follows that does it for 1 number

#include <iostream>
using namespace std;


int f(int n);


int main()
{
int first;
cout << "Enter First Integer: ";
cin >> first;


while(first != 1) //test ithat first is not qual to 1
{
cout <<  first << " ";



first = f(first);//call function


}
cout << first << endl;


return 0;
}


int f(int n)
{


if(n %2 == 0)//test to see if even
{
return n /=2;


}
else
{
return n = 3*n+1;//is odd


}


}

i need it to do it for two numbers and out but the sequence between those two numbers and then compare them and output that number 9 is the longest sequence it contained 20 numbers any help with this would greatly be appreeciated. forgive me i'm new to the forum and i'm not sure how to use
the code tags.

Recommended Answers

All 5 Replies

do you know how to use interpunction?
your ramblings are completely incomprehansible.

Here is the code so far now where i'm stuck is how to put the first number into a temp variable call my function and then store the count into a variable and compare the count with the next number called after calling the function.

For example the numbers entered are 8 and 10
after the first call to my function the result is:

8 4 2 1 count = 4

next call

9 28 14 7 22 11 34 17 52 26 13 40 20 10 5 16 8 4 2 1 count2 = 20

last call
10 5 16 8 4 2 1 count3 = 7

once i compared the counter i found the longest sewuence out put the longest sequence, i'm stuck as to where to count and then compare the reults here is what i have so far.

do you know how to use interpunction?
your ramblings are completely incomprehansible.

thanks everyone for your help, i no longer need help with this program, got it all figured out and it's working perfectly.

Could you post your working code for the benifit of the community? Thanks in advance.

For the benifit of the community could you refrain from digging up threads almost 2 years old ? Thanks in advance.
If you have the same problem please create a new thread with your effort upto now. :) If you want you can post a link to this thread from your post, so that we know what you are talking about.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.