对于我目前正在研究的实验室,它可以帮助我:
output = ""
output += word
loop i that runs
{
output += word.charAt(i)
loop j
{
output += " "
}
output += word.charAt( ______ )+ "\n"
}
StringBuffer sb = new StringBuffer(word);
output += word backwards
这是我现在的代码:
import static java.lang.System.*;
class BoxWord
{
private String word;
public BoxWord()
{
word="";
}
public BoxWord(String s)
{
word = s;
}
public void setWord(String w)
{
word = w;
}
public String toString()
{
String output="";
output += word + "\n";
for(int i =1; i<word.length(); i++)
{
output += word.charAt(i);
for(int j =i+1; j<word.length()-i; j++)
{
output += " ";
}
output += word.charAt((word.length()-i)) + "\n";
}
StringBuffer sb = new StringBuffer(word);
output += sb;
return output+"\n";
}
}
这是我用于交叉引用的跑步者类:
import static java.lang.System.*;
import java.util.Scanner;
public class Lab11f
{
public static void main( String args[] )
{
Scanner keyboard = new Scanner(System.in);
String choice="";
do{
out.print("Enter the word for the box : ");
String value = keyboard.next();
//instantiate a BoxWord object
BoxWord bw = new BoxWord(value );
//call the toString method to print the triangle
System.out.println( bw );
System.out.print("Do you want to enter more data? ");
choice=keyboard.next();
}while(choice.equals("Y")||choice.equals("y"));
}
}
目前它的输出是这样的:
正方形
q
你的
啊
汝
情商
正方形
当它需要是这样的:
正方形
Q>>>>R
你>>>>一个
一个>>>>U
右>>>>问
ERAUQS(其中“>”表示空格,最后一列应对齐)
这是实验室表的 google 文档版本的链接:https ://docs.google.com/open?id=0B_ifaCiEZgtcVTAtT2t0ajRPLUE
更新:
好的,这在大多数情况下都有效。我现在得到这个:
正方形
q>>>>e
你>>>>r
一个>>>>一个
r>>>>u
e>>>>q
正方形
更新#2 现在我的结果是这样的:
正方形
q>>>>e
你>>>>r
一个>>>>一个
r>>>>u
时代