原创 LoopExaple

public class LoopExample {  public static void main (String args[])  {   System.out.println("*");   System.out.println

原创 3年後重回代碼世界

3年後重回代碼世界

原创 biancheng

public class Test97 { public static void main(String args[]) { int[] i = new int[6];//定義一個數組存放結果 int k = 0;//數組i

原创 第4周作業-打字成績判斷程序

public class TouchType { private static final int Alphanumeric = 27; public static void main(String args[]){ if(Al

原创 第7周作業1-循環大戰

import javax.swing.*;//這相當於是從鍵盤輸入的包類 public class FactorialTest { public static void main (String args[]) { in

原创 LoopExample

public class LoopExample {  public static void main (String args[])  {   System.out.println("   *  ");   System.out.pr

原创 第4周作業-數學學習工具

import java.util.Scanner; public class AdditionQuiz { public static void main(String args[] ) { int number1 = (in

原创 IF語句大顯身手之成績判斷

public class GradeIf { public static void main(String args[]) { int Score = 80; if(Score>=85) System.out.print

原创 第7周作業1-循環大戰

import javax.swing.*; /** *這是計算n的階乘 *通過了do...while來實現 * */ public class FactorialTest3 { public static void ma

原创 計算一系列數的和

import java.io.*; public class ConsoleInput { public static void main(String args[]) { int data; int sum=0; S