zoj3124 Celebrity jeopardy

2022-06-28 18:37:14 浏览数 (1)

本文最后更新于 1170 天前,其中的信息可能已经有所发展或是发生改变。

代码语言:javascript复制
// zoj3124 Celebrity jeopardy.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include<iostream>
#include<string>
using namespace std;


int main()
{
	string str1;
	
	
	while (getline(cin, str1))
	{
		cout << str1<<endl;

		
	}
	return 0;
}

Post Views: 149

0 人点赞