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

二进制

时间:2018-03-07 11:38:27      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:string   top   问题   namespace   ons   http   AC   gpo   pos   

/*http://poj.org/problem?id=2013*/

问题描述:重新输出字符串组,两端最短,中间 最长
#include <iostream>
#include <cstdio>
#include <string>

using namespace std;

const int MAXM = 25 + 1;
const int MAXN = 15;

int main()
{
 int t = 0;
 int N;
 char names[MAXN][MAXM];
 while (scanf("%d", &N) && N)
 {
  int top = 0, bottom = N - 1;
  for (int i = 0; i < N; ++i)
  {
   if (i & 1)
   {
    scanf("%s", &names[bottom]);
    bottom--;  
   }
   else
   {
    scanf("%s", &names[top]);
    top++;
   }
  }
  printf("SET %d\n", t + 1);
  for (int i = 0; i < N; ++i)
  {
   printf("%s\n", names[i]);
  }

  t++;
 }

 return 0;
}

二进制

标签:string   top   问题   namespace   ons   http   AC   gpo   pos   

原文地址:https://www.cnblogs.com/unknownname/p/8520819.html

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