摘要:
#include int main(int argc, char *argv[]) { printf("%d \n",a(3,8)); printf("%d \n",c(3,8)); return 0; } //计算排列数A(m,n)=n!/m! int a(int m,int n){ return (jc(n)/jc(n-m)); } ... 阅读全文
摘要:
问题描述: 验证尼克斯彻定理,即任何一个整数的立方都可以写成一串连续奇数的和,如下所示: 13 =1 23=3+5 33=7+9+11 43=13+15+17+19 输出: 1^3=1+...+12^3=3+...+53^3=7+...+113^3=27+...+274^3=1+...+154^3= 阅读全文
摘要:
正整数n若是它平方数的尾部,则称n为同构数。 例如:5的平方数是25,且5出现在25的右侧,那么5就是一个同构数。 1 #include <stdio.h> 2 int check(int n); 3 int main(int argc, char *argv[]) 4 { 5 int i; 6 f 阅读全文
摘要:
输出: 2+...+8 = 278+...+11 = 2713+...+15 = 27 阅读全文
摘要:
如果a的所有正因子和等于b,b的所有正因子和等于a,因子包括1但不包括本身,且a不等于b,则称a,b为亲密数对 输出: 220 2841184 12102620 2924 阅读全文
摘要:
完全数(Perfect number),又称完美数或完备数,是一些特殊的自然数。它所有的真因子(即除了自身以外的约数)的和(即因子函数),恰好等于它本身。 输出: 6 28 496 阅读全文
摘要:
输出: 3 5 7 11 阅读全文
摘要:
1 #include 2 int main(int argc, char *argv[]) 3 { 4 printf("%d\n",day(2009,3,6)); 5 return 0; 6 } 7 8 int day(int y,int m,int d){ 9 int month[13]={0,31,28,31,30,31,30,31,31,30,... 阅读全文
摘要:
1 #include 2 #include 3 #include 4 int main(int argc, char *argv[]) 5 { 6 clock_t start,end; 7 start=clock(); 8 Sleep(1000); 9 end=clock(); 10 11 printf("ti... 阅读全文
摘要:
计算x2在0到1间的面积 阅读全文
摘要:
#include #define NUM 4 //棋盘的大小 int a[NUM][NUM]; //棋盘数组 int count =0; //解的个数 //dfs函数,i表示目前棋盘上有几个皇后,a表示棋盘数组 void dfs(int i,int a[NUM][NUM]); //在棋盘上的i,j,处放置皇后,如果满足... 阅读全文