Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
3988 李思贤 字符串反转 C++ 编译错误 0 0 MS 0 KB 398 2019-12-27 21:38:41

Tests(0/0):


#include<iostream> using namespace std; int main(){ int n; char str[1001]; scanf("%d%*c",&n); for(int k=1;k<=n;k++){ gets(str); int i=0; while(str[i]){ while(str[i]==' ') printf("%c",str[i++]); int WordLeft=i; while(str[i]&&str[i]!=' ') i++; int WordRight=i-1; while(WordLeft<=WordRight) printf("%c",str[WordRight--]) } cout<<endl; } return 0; }


测评信息: