码迷,mamicode.com
首页 > 编程语言 > 详细

java method 方法的参数与返回值

时间:2015-01-13 10:32:59      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:java method

public class TestJava4_9 {
public static void main(String args[]) {
int num;
num = star(7);
System.out.println(num+" stars printed");
}

public static int star(int n) {
for (int i = 1; i < 2*n; i++) {
System.out.print("*");
}
System.out.print("\n");
return 2*n;
}
}

java method 方法的参数与返回值

标签:java method

原文地址:http://blog.csdn.net/lua_denis_2014/article/details/42672815

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!