Positive SSL
A do...while
B while
C switch...case
D if...then...else

A do...while
B while
C switch...case
D if...then...else

A do...while
B while
C switch...case
D if...then...else

A 輸入三個變數
B 找出輸入數值最小值
C 找出輸入數值最大值
D 輸出結果為the output is:c

A 變數用來存放資料,以利程式執行,可以是整數、浮點、字串的資料型態
B 程式中可以操作、改變變數的值
C 常數存放固定數值,可以是整數、浮點、字串的資料型態
D 程式中可以操作、改變常數值

A 小括號應該改成大括號
B sum = sum +30; 必須使用大括號括起來
C While 應該改成while
D While ( sum <=1000 )之後應該要有分號
While(sum<=1000)
  sum=sum+30;

A while (x>0) do {y=5;}
B for (x<10) { y=5;}
C while (x>0 || x<5) { y=5;}
D do (x>0) { y=5 } while (x<1)