囧...你这是功能函数, 为啥要返回值呢>? void 改成 int 必然需要return 语句呀...-0 - 也没啥可返回的int型数据呀,,,
写 return 0 表示程序结束???
- public class Demo
- {
- public static void main(String[] args)
- {
- chang(6);
- }
- public static int chang(int a)
- {
- for (int x = 0; x < a; x++)
- {
- for (int y = 0; y < a; y++)
- {
- System.out.print("*");
- }
- System.out.println();
-
- }
- return 0;
- }
- }
复制代码 |