码迷,mamicode.com
首页 > 其他好文 > 详细

617A

时间:2019-04-09 18:28:38      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:pre   main   clu   min   can   \n   while   scan   ret   

#include <stdio.h>

int main()
{
    int moves[5]={1,2,3,4,5};
    int x;
    scanf("%d", &x);
    int ind=4;
    int Minsteps=0;
    while((x!=0)&&(ind>=0))
    {
        if(x>=moves[ind])
            Minsteps+=x/moves[ind];
        x%=moves[ind--];
    }
    printf("%d\n", Minsteps);
    return 0;
}

  

617A

标签:pre   main   clu   min   can   \n   while   scan   ret   

原文地址:https://www.cnblogs.com/ozxics/p/10678591.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!