A. Wrong Subtraction

 A. Wrong Subtraction_第1张图片

这是道水题没啥好说的!

#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;

int main()
{
	long long a, b;
	cin >> a >> b;
	for (int i = 1; i <= b; i++)
	{
		if (a % 10 == 0)
			a /= 10;
		else
			a -= 1;
	}
	cout << a;
	return 0;
}

 

你可能感兴趣的:(cf刷题随笔)