| | |
longest hailstone sequence
Please support our C++ advertiser: Intel Parallel Studio Home
Thread Solved |
•
•
Join Date: Oct 2004
Posts: 24
Reputation:
Solved Threads: 0
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.
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.
•
•
Join Date: Oct 2004
Posts: 24
Reputation:
Solved Threads: 0
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.
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.
•
•
•
•
Originally Posted by jwenting
do you know how to use interpunction?
your ramblings are completely incomprehansible.
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.
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. バルサミコ酢やっぱいらへんで
![]() |
Similar Threads
- using pascal to write ulam sequence (Pascal and Delphi)
- What is a Sequence (Visual Basic 4 / 5 / 6)
Other Threads in the C++ Forum
- Previous Thread: How do I overload [] operator for pointers
- Next Thread: Counting TTL Input signals
| Thread Tools | Search this Thread |
api array arrays based binary bitmap c++ c/c++ calculator char char* class classes code coding compile compiler console conversion convert count data database delete deploy developer dll download dynamic dynamiccharacterarray email encryption error file forms fstream function functions game generator getline givemetehcodez graph gui homeworkhelp iamthwee ifstream input int java lib linker list loop looping loops map math matrix memory multiple news node number numbertoword output pointer problem program programming project proxy python random read recursion recursive reference rpg sorting string strings temperature template test text text-file tree url variable vector video visual visualstudio win32 windows winsock word wordfrequency wxwidgets






