一个关于字符串反转的问题
问题是输入n个字符串, 然后将它们输出。先输入n (为字符串的个数),再输入每个字符串,并把每个字符串反向输出。
例如
3
asdfg
gfdsa
zxcvb
bvcxz
12345
54321
我写的程序如下:
public static void main(String [] args) throws IOException
{
InputStreamReader reader=new InputStreamReader(System.in);
BufferedReader input=new BufferedReader(reader);
String text=input.readLine();
int n=new Integer(text).intValue();
int i=0;
while(i<n)
{
text=(String)input.readLine();
System.out.println(new StringBuffer(text).reverse().toString());
i++;
}
}
可是我得到的结果却是:
3
asdf
3
asdf
fdsa
lkjh
hjkl
为什么第一次输出的结果是3呢? 请大家帮忙看看吧!!!