標題:
[隨堂測驗] 自訂函式 (三) - 鸚鵡說話
[打印本頁]
作者:
李泳霖
時間:
2022-1-28 08:52
標題:
[隨堂測驗] 自訂函式 (三) - 鸚鵡說話
本帖最後由 李泳霖 於 2022-1-28 10:51 編輯
自訂一個名叫 repeat 的方法,在主方法中呼叫它,它就能重複特定的句子數次。
譬如:若當我呼叫 repeat("歡迎光臨",3),鸚鵡就會重複 "歡迎光臨" 3次。
import java.util.Scanner;
public class Ch50 {
static void repeat(String str,int n)
{
for(int i=0; i<n; i++)
System.out.println(str);
}
public static void main(String[] args)
{
Scanner s=new Scanner(System.in);
String str;
int n;
System.out.print("想讓鸚鵡說什麼話? ");
str=s.nextLine();
System.out.print("說幾次? ");
n=s.nextInt();
repeat(str,n);
}
}
複製代碼
作者:
曾俊儒
時間:
2022-1-28 10:17
此帖僅作者可見
作者:
丁肇志
時間:
2022-1-28 10:36
此帖僅作者可見
作者:
于棋安
時間:
2022-1-28 10:52
此帖僅作者可見
作者:
許鈞彥
時間:
2022-1-28 10:57
此帖僅作者可見
作者:
趙彥傑
時間:
2022-1-28 11:08
此帖僅作者可見
作者:
宗翰
時間:
2022-1-28 11:12
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2