สวัสดีครับ มาพบกันต่อกับโจทย์แปลง ภาษา Java เป็น Flowcahrt ข้อ 3 ข้อนี้จะเป็นโจทย์การใช้ If , If Else และ Switch เอาล่ะครับมาลองลุยกันดูเลย ^^
โจทย์
จาก Source Code ภาษา Java ต่อไปนี้จงเขียนเป็น Flowchart ให้ถูกต้อง
Source Code
import java.util.Scanner;
public class JavaToFlowchart1
{
public static void main(String[] args)
{
Scanner stdin = new Sacnner(System.in);
int x,y;
System.out.print("X = ");
x = stdin.nextInt();
x = 1;
switch(x)
{
case 1 : System.out.println("Case 1");
break;
case 2 : System.out.println("Case 2");
break;
case 3 : System.out.println("Case 3");
break;
case 4 : System.out.println("Case 4");
break;
case 5 : System.out.println("Case 5");
break;
}
System.out.print("Y = ");
y = stdin.nextInt();
if (y > 10) {
y = y + 1;
System.out.println(y);
}
else
{
y = y + 2;
System.out.println(y);
}
if (y > 10) {
y = y + 1;
System.out.println(y);
}
System.out.println(y);}
}
เกี่ยวกับแบบฝึกหัด
ระดับความยาก : 3 / 10
เหมาะสำหรับ : ผู้เริ่มต้น
คลิกปุ่ม แก้ไข... เพื่อแก้ไขเนื้อหา