標題:
[作業] 陣列 (二)
[打印本頁]
作者:
周政輝
時間:
2018-8-25 15:12
標題:
[作業] 陣列 (二)
假設五年級共有四個班, 一班有28人, 二班有33人, 三班有34人, 四班有30人,
試利用陣列與for迴圈, 列出五年級各班的人數.
[attach]4716[/attach]
作者:
高允懋
時間:
2018-8-25 15:15
public class Java
{
public static void main(String[] args)
{
String str[]=new String[4];
str[0]="28";
str[1]="33";
str[2]="34";
str[3]="30";
for(int i=0;i<=3;i++)
System.out.println("5年"+(i+1)+"班: "+str[i]+"人");
}
}
複製代碼
作者:
吳秉翰
時間:
2018-8-25 15:18
package bn.tw;
public class Main {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int student[] = { 28, 33, 34, 30 };
for (int i = 0; i <= 3; i++) {
System.out.print(i+1+"班有:");
System.out.println(student[i]+"人");
}
}
}
複製代碼
作者:
鄭楀諺
時間:
2018-8-25 15:19
package morris;
public class Main {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
String str[]=new String[4];
str[0]="28";
str[1]="33";
str[2]="34";
str[3]="30";
for(int i=0;i<=3;i++)
{
System.out.print("5年"+(i+1)+"班: ");
System.out.println(str[i]+"人");
}
}
}
複製代碼
作者:
王駿愷
時間:
2018-8-25 15:22
public class HelloWorld
{
public static void main(String []args)
{
String str[]={"28","33","25","28"};
for(int i=0;i<=3;i++)
{
System.out.print("五年"+(i+1)+"班: ");
System.out.print(str[i]+"人 ");
}
}
}
複製代碼
作者:
湯東緯
時間:
2018-8-25 15:25
package bbs.istak.org.tw;
public class MAIN {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
String str[]={"五年一班","五年二班","五年三班","五年四班"};
String str1[]={"28","33","34","30"};
for(int i=0;i<=3;i++)
{
System.out.println("五年"+(i+1)+"班");
System.out.println(str1[i]+"人");
}
}
}
複製代碼
作者:
彭煥宇
時間:
2018-9-1 14:26
public class Java
{
public static void main(String[] args)
{
String str[]=new String[4];
str[0]="28";
str[1]="33";
str[2]="34";
str[3]="30";
for(int i=0;i<=3;i++)
System.out.println("5年"+(i+1)+"班: "+str[i]+"人");
}
}
複製代碼
作者:
顏詢
時間:
2018-9-1 14:51
package zzz;
public class Pq {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
String str2[] ={"28","33","34","30"};
for(int j=0;j<=3;j++){
System.out.println("5年"+(j+1)+"班: "+str2[j]+"人");
}}}
複製代碼
作者:
黃安立
時間:
2018-9-1 14:52
package Main;
public class Main
{
public static void main(String[] args)
{
int student[] = { 28, 33, 34, 30 };
for (int i = 0; i <= 3; i++)
{
System.out.print(i+1+"班有:");
System.out.println(student[i]+"人");
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2