蓝桥杯 1083: Hello, world! Easy only once *注意不同OJ系统的问题

基本思想:

没啥,ASCII的弱智题;

 

关键点:

蓝桥OJ的两个特点:

不支持边读入边输出,和PATOJ有区别;

System pause 会导致超时问题;

 

#include
#include
#include
#include 
#include
#include
#include
#include
using namespace std;
using std::vector;
vectorvec;

int main() {
	char s;
	int n;
	while (scanf("%d", &n) != EOF) {
		s = n;
		vec.push_back(s);
	}
	for (auto ele : vec)
		cout << ele;
	//system("pause");
	return 0;
}

  

你可能感兴趣的:(蓝桥杯 1083: Hello, world! Easy only once *注意不同OJ系统的问题)