/*
----*
---* *
--* * *
-* * * *
* * * * *
*/
class Demo5
{
public static void main(String[] args)
{
for(int x=1;x<=5;x++)
{
for(int y=x;y<5;y++)
{
System.out.print(" ");
}
for(int z=1;z<=x;z++)
{
System.out.print("* ");
}
System.out.println();
}
}
}
class Demo7
{
public static void main(String[] args)
{
int x=getResult(4);
System.out.println(x);
}
//需要定义功能,完成一个整数的*3+5的运算,
//1,先明确函数定义的格式。
/*
修饰符 返回值类型 函数名(参数类型 形式参数1,参数类型 形式参数2,)
{
执行语句;
return 返回值;
}
//当函数运算后,没有具体的返回值时,这时返回值类型用一个特殊的关键字来表示。
//该关键字就是void。void:代表的是函数没有具体返回值的情况。
//当函数的返回值类型是void时,函数中的return语句可以省略不写。
*/
public static int getResult(int num)
{
return num*3+5;
}
}
|
|