小刀砍大树GZ 2015-11-01 15:57 采纳率: 0%
浏览 1354

各位大大求解答 新人求罩

  1. Hello World for U (20)

Given any string of N (>=5) characters, you are asked to form the characters into the shape of U. For example, "helloworld" can be printed as:
h d
e l
l r
lowo
That is, the characters must be printed in the original order, starting top-down from the left vertical line with n1 characters, then left to right along the bottom line with n2 characters, and finally bottom-up along the vertical line with n3 characters. And more, we would like U to be as squared as possible -- that is, it must be satisfied that n1 = n3 = max { k| k <= n2 for all 3 <= n2 <= N } with n1 + n2 + n3 - 2 = N.
Input Specification:

Each input file contains one test case. Each case contains one string with no less than 5 and no more than 80 characters in a line. The string contains no white space.

Output Specification:

For each test case, print the input string in the shape of U as specified in the description.

Sample Input:
helloworld!
Sample Output:
h !
e d
l l
lowor

#include
#include
#include
using namespace std;
int main()
{
int n1,n2,n3;
char str[81];
scanf("%s",str);
int len=strlen(str);
n1=len/2-1;
n3=len/2-1;
n2=len-n1-n3;
int i,j;
if(len==5)
{
printf("%c %c\n",str[0],str[4]);
printf("%c%c%c",str[1],str[2],str[3]);
}
else
{
for(i=0;i<n1-1;i++)
{
printf("%c",str[i]);
for(j=0;j<n2;j++)
{
printf(" ");
}
printf("%c\n",str[len-i-1]);
}
for(i=0;i<n2+1;i++)
printf("%c",str[i+n1-1]);
printf("%c\n",str[n2+n1]);
}
}
我的代码为什么一直wa啊啊啊啊啊!!!

  • 写回答

2条回答 默认 最新

  • ysuwood 2015-11-07 09:29
    关注

    你的代码很乱啊,整理一下再贴上来吧。

    评论

报告相同问题?

悬赏问题

  • ¥15 gojs 点击按钮node的position位置进行改变,再次点击回到原来的位置
  • ¥15 计算决策面并仿真附上结果
  • ¥20 halcon 图像拼接
  • ¥15 webstorm上开发的vue3+vite5+typeScript打包时报错
  • ¥15 vue使用gojs,需求在link中的虚线上添加方向箭头
  • ¥15 CSS通配符清除内外边距为什么可以覆盖默认样式?
  • ¥15 SPSS分类模型实训题步骤
  • ¥100 求ASMedia ASM1184e & ASM1187e 芯片datasheet/规格书
  • ¥15 求解决扩散模型代码问题
  • ¥15 工创大赛太阳能电动车项目零基础要学什么