标签:div open html 多少 str reset otto ott 增加
题目描述:有一只小鱼,它平日每天游泳 250 公里,周末休息(实行双休日),假设从周 x(1≤x≤7) 开始算起,过了 n(n≤10^6) 天以后,小鱼一共累计游泳了多少公里呢?
输入格式:输入两个整数x,n(表示从周x算起,经过n天)。
输出格式:输出一个整数,表示小鱼累计游泳了多少公里。
解析:用for循环设置一个限制,在n天内。用if语句对周六周天和非周六周天进行区别,如果x=6或者x=7,那么m不增加;再从周几出发,对x=1,2,3,4,5,6
和x=7进行分别讨论,if x=7, 那么x就归为1,因为x不能为8,else x=x+1;
#include<stdio.h> int main() { int x,n; int i; int m=0; scanf("%d %d", &x, &n); for( i=0; i<n ; i++ ) { if( x<6 ) m += 250; if( x == 7) { x = 1; } else x++; } printf("%d", m ); return 0; }
标签:div open html 多少 str reset otto ott 增加
原文地址:https://www.cnblogs.com/18191xq/p/11629157.html