096.角谷猜想
【摘要】
#include<stdio.h>void main(){ int n=1,count=0; clrscr(); puts("*********************************************************"); puts("* >> This ...
-
#include<stdio.h>
-
void main()
-
{
-
int n=1,count=0;
-
clrscr();
-
puts("*********************************************************");
-
puts("* >> This program is to verify Jiaogu Guess << *");
-
puts("* That is given any natural number, if it is an even, *");
-
puts("* divides 2, if it is an odd, multiple 3 and add 1, the *");
-
puts("* result continues to be calculated analogously. After *");
-
puts("* some times, the result is always 1. *");
-
puts("*********************************************************");
-
while(n!=0)
-
{
-
printf(" >> Please input a number to verify(0 to quit): ");
-
scanf("%d",&n); /*输入任一整数*/
-
if(n==0)
-
break;
-
printf(" >> ------ Results of verification: ------------\n");
-
do{
-
if(n%2)
-
{
-
n=n*3+1; /*若为奇数,n乘3加1*/
-
printf(" >> Step No.%d: %d*3+1=%d\n",++count,(n-1)/3,n);
-
}
-
else
-
{
-
n/=2; /*若为偶数n除以2*/
-
printf(" >> Step No.%d: %d/2=%d\n",++count,2*n,n);
-
}
-
}while(n!=1); /*n不等于1则继续以上过程*/
-
printf(" >> ---------------------------------------------\n");
-
}
-
puts("\n Press any key to quit...");
-
getch();
-
}
文章来源: blog.csdn.net,作者:程序员编程指南,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/weixin_41055260/article/details/124558308
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)