首页 > 代码库 > 《算法竞赛入门经典》第二章 2.2
《算法竞赛入门经典》第二章 2.2
程序2-4
1 #include<stdio.h> 2 #include<math.h> 3 int main() 4 { 5 int n, count = 0; 6 scanf("%d",&n); 7 while(n>1) 8 { 9 if(n % 2 ==1) n = 3*n +1;10 else n/=2;11 count++;12 }13 printf("%d\n",count);14 return 0;15 }
程序2-5
1 #include<stdio.h> 2 #include<math.h> 3 int main() 4 { 5 int i, j, n, S = 0; 6 scanf("%d",&n); 7 for(i = 1;i<=n;i++) 8 { 9 int factorial = 1;10 for(j = 1;j <=i;j++)11 {12 factorial *= j;13 }14 S +=factorial;15 }16 printf("%d\n",S % 1000000);17 return 0;18 }
《算法竞赛入门经典》第二章 2.2
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。