ในส่วนที่รับค่าเงินบาทนั้น ผมอยากให้มีคำว่า bath ต่อท้ายประโยค ก็คือ
เคอเซอร์ที่กระพริบอยู่ตอนเรารับค่า อยากให้มันอยู่ระหว่างคำว่า "enter num (bath)" กับ คำว่า
"bath" คับ ไม่ทราบว่าทำได้หรือป่าวคับ ถ้าได้ยังไงช่วยอธิบาย และเขียนโค้ดเพิ่มให้หน่อยคับ
Code
import java.io.*;
class bathDollar
{
public static void main(String[] args)throws IOException
{
String inputBath = "";
double dollar ;
double bath ;
BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
System.out.print("enter num (bath) ");
inputBath = stdin.readLine();
bath = Double.parseDouble(inputBath);
dollar = bath * 0.025;
System.out.println("count bath"+ bath);
System.out.println("sum is "+ dollar+" dollar");
}
}