标签:style blog io color os sp strong 数据 div
描述
传说中能站在金字塔顶的只有两种动物,一种是鹰,一种是蜗牛。一只小蜗牛听了这个传说后,大受鼓舞,立志要爬上金字塔。为了实现自己的梦想,蜗牛找到了老鹰,老鹰告诉它金字塔高H米,小蜗牛知道一个白天自己能向上爬10米,但由于晚上要休息,自己会下滑5米。它想知道自己在第几天能站在金字塔顶,它想让你帮他写个程序帮助它。
2 1 5
1 1
#include <iostream> #include <string> using namespace std; int main() { int n,m; cin>>n; while(n--) { cin>>m; if(m <=10) cout<<‘1‘<<endl; else if(m>10 && m<=15) cout<<‘2‘<<endl; else if(m>15) cout<<(m-1)/5<<endl; } return 0; }
标签:style blog io color os sp strong 数据 div
原文地址:http://www.cnblogs.com/imwtr/p/4069612.html