94.95.96

第九十四题:有一条长阶梯:如果每步跨 2阶,那么最后剩 1 阶;如果每步跨 3 阶,那么最后剩 2 阶;如果每步跨 5 阶,那么最后剩 4 阶;如果每步跨 6 阶,那么最后剩 5 阶;只有当每步跨 7 阶时,最后才正好走完, 一阶不剩。请问这条阶梯至少有多个阶

#include <stdio.h>
void main()
{ 
   int n;
   for(n=7;n<1000;n++)
   if(n%7==0&&n%6==5&&n%5==4&&n%4==3&&n%3==2&&n%2==1)
      {
        printf("%d\t",n); 
        break;
      }  
}

第九十五题:编写程序求出 1000-2000 年之间的所有闰年,并统计个数

#include"stdio.h"
void main()
{
    int year,num=0;
    for(year=1000;year<=2000;year++)
       if(year%4==0&&year%100!=0||year%400==0)
        {
            num++;
            printf("%d    ",year);
        }
    printf("\ntotal is %d\n",num);
    
 } 
 

第九十六题:计算10的阶乘

#include"stdio.h"
void main()
{
long int total=1;
int n=1;
while(n<=10)
{
    total*=n;
    n++ ;
}    
printf("the result is %ld\n",total);
} 
上一篇:Metasploit各版本对比


下一篇:Leetcode 96. 不同的二叉搜索树