C/C++教程

A. Chewbaсca and Number【1200 / 贪心】

本文主要是介绍A. Chewbaсca and Number【1200 / 贪心】,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

在这里插入图片描述
https://codeforces.com/problemset/problem/514/A

#include<bits/stdc++.h> 
using namespace std;
int main(void)
{
	string s; cin>>s;
	for(int i=0;i<s.size();i++)
	{
		int a=s[i]-'0',b=9-a;
		if(min(a,b)==0&&!i) continue;
		s[i]='0'+min(a,b);
	}
	cout<<s;
	return 0;
}
这篇关于A. Chewbaсca and Number【1200 / 贪心】的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!