小弟进步比较慢,做基础测试题目的时候把自己绕进去了。这个题目看起来不难啊,整么被我越整越麻烦了呢,运行结果也郁闷
是不是我思维太发散了,各位通过了基础测试的官爷们,给点指导吧。
------------------------------------------------------分割线-------------------------------------------------------------------
package com.itheima;
/**
* 第3题:编写一个方法(名字自定,但要符合Java编码规范),
* 方法内打印一字符串,并在main()方法内调用它。
*/
public class Test3
{
public static void main(String[] args)
{
String[] arr=new String[]{"hello,world!"};
StrPrint(arr); //主函数内调用字符串输出方法
}
/*
编写一个方法打印字符串
*/
public static void StrPrint(String[] arr)
{
int x=0;
while(x!=arr.length-1)
{
System.out.print(arr[x]);
x++;
}
System.out.println();
}
} |