文章
34
粉丝
179
获赞
13
访问
199.0k
#include <iostream>
#include<bits/stdc++.h>
using namespace std;
int main(){
string s="I want to take the MS's rocket to live in the MS's ice castle";
int len=s.length();
for(int i=0;i<len;i++){
if(i==len-1)
printf("%d",s[i]);
else
printf("%d ",s[i]);
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发