按照要求,方法改进"*"图案
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按照要求,方法改进"*"图案相关的知识,希望对你有一定的参考价值。
package wac.wev.LianXi;
/*
-
public class FunctionDemo2 {
public static void main(String[] args) {
4行5列的
for(int x = 0 ; x < 4 ; x ++) {//控制行数
for(int y = 0 ; y < 5; y ++) {//控制列数
System.out.print("");
}
System.out.println();
}
System.out.println("---------------------");
6行7列
for(int x = 0 ; x < 6; x ++) {
for(int y = 0 ; y <7 ; y++) {
System.out.print("");
}
System.out.println();
}
System.out.println("---------------------");使用方法改进这个程序 没有具体返回值类型的方法 void :他是使用单独调用
-
*方法改进
- /
public class FunctiongDemo2 {
public static void main(String[] args){
//用方法改进直接引用
Xing(7,8);
}
//1:明确目标返回值类型:void
//2:明确参数类型和参数个数:int 行和列
public static void Xing(int m,int n){
//控制行数和列数
for(int x=0;x<m;x++){
for(int y=0;y<n;y++){
System.out.print("");//这是不需要换行
}
System.out.println();
}
}
}
以上是关于按照要求,方法改进"*"图案的主要内容,如果未能解决你的问题,请参考以下文章
在线等:怎样用javascript实现往指定的div中输入星号图案