1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > Hello world?Hello world

Hello world?Hello world

时间:2019-08-21 18:50:02

相关推荐

Hello  world?Hello  world

题目描述

This is the first problem for test. Since all we know the ASCII code, your job is simple: Input numbers and output corresponding messages.

输入

The input will contain a list of positive integers separated by whitespaces(spaces, newlines, TABs). Please process to the end of file (EOF). The integers will be no less than 32.

输出

Output the corresponding message. Note there is NOT a newline character in the end of output.

样例输入复制

72 101 108 108 111 4432 119 111 114 108 100 33

样例输出复制

Hello, world!

#include<bits/stdc++.h>using namespace std;char s;int z;int main(){while(scanf("%d",&z)!=-1){s=z;cout<<s;}}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。