0
已解决
谈文瑞
新手光能
新手光能
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
if(b>=10)
{
b=b-10;
a=a+1;
cout<<a<<b;
}
else
{
cout<<a<<b;
}
return 0;
}
哪错了?谢谢!
1602 不是喜欢就能买
题目描述 Description
小明和爸爸妈妈去均价超市,看到喜欢的东西就想买。但是爸爸妈妈给小明的钱有限,现在小明已经买了a件商品了,剩下的钱为b,最后一件喜欢的商品价格为10元。(1<a<10,0<b<200)请输出小明最终的购买的商品数量和剩下的钱数。
输入描述 Input Description
一行,a和b,两个数字用字符隔开
输出描述 Output Description
一行,两个数,最终的商品数和钱数。
样例输入 Sample Input
5 30
样例输出 Sample Output
6 20
数据范围及提示 Data Size & Hint
考虑剩下的钱是否能够买得起最后一件商品