题解 | #小乐乐排电梯#

小乐乐排电梯

https://www.nowcoder.com/practice/0f855c7642b74cccb3c2366bb7732d2a

#include <stdio.h>

int main() 
{
    int n = 0;//在乐乐前,等电梯的人数
    int time = 0;//乐乐到达楼上的时间
    scanf("%d", &n);
    while(n>11)//前面的人数足够12人
    {
        n -= 12;//一次上去12人
        time += 4;//往返一次4分钟
    }
    time += 2;//乐乐搭上电梯,电梯上行2分钟
    printf("%d", time);

    return 0;
}
#include <stdio.h>

int main() 
{
    int n = 0;//在乐乐前,等电梯的人数
    int time = 0;//乐乐到达楼上的时间
    scanf("%d", &n);
    time = n/12*4;//乐乐等电梯的时间
    time += 2;//乐乐搭上电梯,上行需要的时间
    printf("%d", time);

    return 0;
}

全部评论

相关推荐

牛客717484937号:双飞硕没实习挺要命的
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务