您的位置:首页 > 编程语言 > PHP开发

Sample Input72 101 108 108 111 44Sample Output Hello, world!

2013-05-29 14:45 459 查看
#include <iostream>
//#include <iomanip>
//#include <cmath>
//#include <cstdio>
using namespace std;
int main()

{
    int a[13];
    for(int i=0;i<=5;i++)
    cin>>a[i];
    for(int j=6;j<=12;j++)
    cin>>a[j];
    for(int k=0;k<=12;k++)
    cout<<char(a[k]);
    //cout<<endl;
    return 0;
}


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: