摘要:
题意:判断是否为闰年解法:这题需要注意一下用scanf能直接读入year,month,day附上代码: 1: #include 2: #include 3: #include 4: #define N 13 5: int month[N]={0,31,28,31,30,31,30,31,31,30,... 阅读全文
摘要:
题意:显示杨辉三角形。 解法: 组合数学公式:combi(n,m)=combi(n-1,m-1)+combi(n-1,m); 至于为什么有这个公式呢?那就是高中数学的内容啦 1: #include 2: #include 3: #include 4: #define N 31 5: int map[N][N]; 6: void init(){ 7: ... 阅读全文