入门
lixinyi2002
人生不止眼前的苟且,还有诗和远方。
展开
-
luogu 1000超级玛丽
先从入门的开始吧,这道题其实非常简单,只需要掌握简单的输出就可以了。 #include #include using namespace std; int main() { cout<<" ********"<<endl; cout<<" ************"<<endl; cout<<"原创 2017-12-06 23:39:34 · 161 阅读 · 0 评论 -
luogu 1001 A+B problem
这是一道非常常见的题啦,只需要输入a和b 的值就可以输出了。#include #include using namespace std; int a,b; int main() { cin>>a>>b; printf("%d",a+b); }原创 2017-12-06 23:42:22 · 139 阅读 · 0 评论 -
luogu 1421 小玉买文具
这道题也是一道入门难度的题,但要用到向下取整的函数“floor”。 #include #include #include using namespace std; int a,b,x; int main() { cin>>a>>b; x=floor(1.0*(10*a+b)/(1.0*19)); cout<<x<<endl; return 0; }原创 2017-12-06 23:48:57 · 212 阅读 · 0 评论 -
luogu 1425 小鱼的游泳时间
这道题的题干也是比较有意思的,当然,题目也相对简单,要注意一小时是六十分钟哦。#include #include using namespace std; int a,b,c,d,e,f,sn; int main() { cin>>a>>b>>c>>d; sn=c*60+d-a*60+b; if(d<b) { e=c-a-1; f=d+60-b; } if(d>=b) {原创 2017-12-06 23:52:27 · 495 阅读 · 0 评论