fork download
  1. #include <stdio.h>
  2. void ko(int n) {
  3. printf("%d", n);
  4. if (n == 1) {
  5. return;
  6. }
  7. printf("->");
  8. if (n % 2 == 0) {
  9. ko(n / 2);
  10. }
  11. else {
  12. ko(3 * n + 1);
  13. }
  14. }
  15.  
  16. int main() {
  17. for (int i = 1; i <= 40; i++) {
  18. ko(i);
  19. printf("\n");
  20. }
  21. return 0;
  22. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
1
2->1
3->10->5->16->8->4->2->1
4->2->1
5->16->8->4->2->1
6->3->10->5->16->8->4->2->1
7->22->11->34->17->52->26->13->40->20->10->5->16->8->4->2->1
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
11->34->17->52->26->13->40->20->10->5->16->8->4->2->1
12->6->3->10->5->16->8->4->2->1
13->40->20->10->5->16->8->4->2->1
14->7->22->11->34->17->52->26->13->40->20->10->5->16->8->4->2->1
15->46->23->70->35->106->53->160->80->40->20->10->5->16->8->4->2->1
16->8->4->2->1
17->52->26->13->40->20->10->5->16->8->4->2->1
18->9->28->14->7->22->11->34->17->52->26->13->40->20->10->5->16->8->4->2->1
19->58->29->88->44->22->11->34->17->52->26->13->40->20->10->5->16->8->4->2->1
20->10->5->16->8->4->2->1
21->64->32->16->8->4->2->1
22->11->34->17->52->26->13->40->20->10->5->16->8->4->2->1
23->70->35->106->53->160->80->40->20->10->5->16->8->4->2->1
24->12->6->3->10->5->16->8->4->2->1
25->76->38->19->58->29->88->44->22->11->34->17->52->26->13->40->20->10->5->16->8->4->2->1
26->13->40->20->10->5->16->8->4->2->1
27->82->41->124->62->31->94->47->142->71->214->107->322->161->484->242->121->364->182->91->274->137->412->206->103->310->155->466->233->700->350->175->526->263->790->395->1186->593->1780->890->445->1336->668->334->167->502->251->754->377->1132->566->283->850->425->1276->638->319->958->479->1438->719->2158->1079->3238->1619->4858->2429->7288->3644->1822->911->2734->1367->4102->2051->6154->3077->9232->4616->2308->1154->577->1732->866->433->1300->650->325->976->488->244->122->61->184->92->46->23->70->35->106->53->160->80->40->20->10->5->16->8->4->2->1
28->14->7->22->11->34->17->52->26->13->40->20->10->5->16->8->4->2->1
29->88->44->22->11->34->17->52->26->13->40->20->10->5->16->8->4->2->1
30->15->46->23->70->35->106->53->160->80->40->20->10->5->16->8->4->2->1
31->94->47->142->71->214->107->322->161->484->242->121->364->182->91->274->137->412->206->103->310->155->466->233->700->350->175->526->263->790->395->1186->593->1780->890->445->1336->668->334->167->502->251->754->377->1132->566->283->850->425->1276->638->319->958->479->1438->719->2158->1079->3238->1619->4858->2429->7288->3644->1822->911->2734->1367->4102->2051->6154->3077->9232->4616->2308->1154->577->1732->866->433->1300->650->325->976->488->244->122->61->184->92->46->23->70->35->106->53->160->80->40->20->10->5->16->8->4->2->1
32->16->8->4->2->1
33->100->50->25->76->38->19->58->29->88->44->22->11->34->17->52->26->13->40->20->10->5->16->8->4->2->1
34->17->52->26->13->40->20->10->5->16->8->4->2->1
35->106->53->160->80->40->20->10->5->16->8->4->2->1
36->18->9->28->14->7->22->11->34->17->52->26->13->40->20->10->5->16->8->4->2->1
37->112->56->28->14->7->22->11->34->17->52->26->13->40->20->10->5->16->8->4->2->1
38->19->58->29->88->44->22->11->34->17->52->26->13->40->20->10->5->16->8->4->2->1
39->118->59->178->89->268->134->67->202->101->304->152->76->38->19->58->29->88->44->22->11->34->17->52->26->13->40->20->10->5->16->8->4->2->1
40->20->10->5->16->8->4->2->1