实验3-9 三天打鱼两天晒网(15 分)

实验3-9 三天打鱼两天晒网(15 分)

中国有句俗语叫“三天打鱼两天晒网”。假设某人从某天起,开始“三天打鱼两天晒网”,问这个人在以后的第N天中是“打鱼”还是“晒网”?

输入格式:

输入在一行中给出一个不超过1000的正整数N。

输出格式:

在一行中输出此人在第N天中是“Fishing”(即“打鱼”)还是“Drying”(即“晒网”),并且输出“in day N”。

输入样例1:

1
103

输出样例1:

1
Fishing in day 103

输入样例2:

1
34

输出样例2:

1
Drying in day 34
1
2
3
4
5
6
7
8
9
10
#include<stdio.h> 
int main(void) {
int x;
scanf("%d",&x);
if(x%5==0||(x+1)%5==0)
printf("Drying in day %d",x);
else
printf("Fishing in day %d",x);
return 0;
}
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×