码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1062

时间:2018-03-22 21:24:54      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:获取字符串长度   hdu   std   cout   int   using   space   ++   字符串   

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

int main(){
  char a[1010];
  int n;
  cin >> n;
  cin.get(); //空格还是得吸的
  while(n --){
    gets(a);
    int length = strlen(a); //获取字符串长度
    int k = -1;
    for(int i = 0; i <= length; i ++){
      if(a[i] == ‘ ‘ || i == length){
        for(int j = i - 1; j != k && j >= 0; j --){
          putchar(a[j]);
        }
        k = i;
        if(i != length)
          putchar(‘ ‘);
         }
      }
      cout << endl;
    }
   return 0;
}

HDU 1062

标签:获取字符串长度   hdu   std   cout   int   using   space   ++   字符串   

原文地址:https://www.cnblogs.com/Elvis827/p/8626438.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!