年号字串 (蓝桥杯)

传送门

分析:

把 2019 转化为 26 进制然后输出.

参考代码:

#include 

using ll = long long;

int main() {
	std::ios::sync_with_stdio(false);
	std::cin.tie(nullptr);
	int x = 2019;
	std::stack sta;
	while (x) {
		sta.push(x % 26);
		x /= 26;
	}
	while (sta.size()) {
		std::cout << (char)(sta.top() - 1 + 'A');
		sta.pop();
	}
	return 0;
}

你可能感兴趣的:(蓝桥杯,c++,蓝桥杯)