คือตอนนี้ผมป้อนค่าได้แต่ตัวเลข อยากจะใส่ค่า "ชื่อสินค้า" เป็นตัวอักษร
ต้องเปลี่ยนค่าตัวไหนบ้างครับ
โค๊ตตัวอย่าง
import javax.swing.*;
class lab02
{
public static void main(String[] args)
{
String strIn,strOut;
int name,price,amount,sum,sum_total,vat,sum_vat;
strIn= JOptionPane.showInputDialog(null,"ชื่อสินค้า1");
name=Integer.parseInt(strIn);
strIn= JOptionPane.showInputDialog(null,"ราคาสินค้า1");
price=Integer.parseInt(strIn);
strIn= JOptionPane.showInputDialog(null,"จำนวนสินค้า1");
amount=Integer.parseInt(strIn);
โค๊ตเต็ม
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้import javax.swing.*;
class lab02
{
public static void main(String[] args)
{
String strIn,strOut;
int name,price,amount,sum,sum_total,vat,sum_vat;
strIn= JOptionPane.showInputDialog(null,"ชื่อสินค้า1");
name=Integer.parseInt(strIn);
strIn= JOptionPane.showInputDialog(null,"ราคาสินค้า1");
price=Integer.parseInt(strIn);
strIn= JOptionPane.showInputDialog(null,"จำนวนสินค้า1");
amount=Integer.parseInt(strIn);
int name1,price1,amount1,sum1;
strIn= JOptionPane.showInputDialog(null,"ชื่อสินค้า2");
name1=Integer.parseInt(strIn);
strIn= JOptionPane.showInputDialog(null,"ราคาสินค้า2");
price1=Integer.parseInt(strIn);
strIn= JOptionPane.showInputDialog(null,"จำนวนสินค้า2");
amount1=Integer.parseInt(strIn);
int name2,price2,amount2,sum2;
strIn= JOptionPane.showInputDialog(null,"ชื่อสินค้า3");
name2=Integer.parseInt(strIn);
strIn= JOptionPane.showInputDialog(null,"ราคาสินค้า3");
price2=Integer.parseInt(strIn);
strIn= JOptionPane.showInputDialog(null,"จำนวนสินค้า3");
amount2=Integer.parseInt(strIn);
int name3,price3,amount3,sum3;
strIn= JOptionPane.showInputDialog(null,"ชื่อสินค้า4");
name3=Integer.parseInt(strIn);
strIn= JOptionPane.showInputDialog(null,"ราคาสินค้า4");
price3=Integer.parseInt(strIn);
strIn= JOptionPane.showInputDialog(null,"จำนวนสินค้า4");
amount3=Integer.parseInt(strIn);
int name4,price4,amount4,sum4;
strIn= JOptionPane.showInputDialog(null,"ชื่อสินค้า5");
name4=Integer.parseInt(strIn);
strIn= JOptionPane.showInputDialog(null,"ราคาสินค้า5");
price4=Integer.parseInt(strIn);
strIn= JOptionPane.showInputDialog(null,"จำนวนสินค้า5");
amount4=Integer.parseInt(strIn);
sum=price*amount;
sum1=price1*amount1;
sum2=price2*amount2;
sum3=price3*amount3;
sum4=price4*amount4;
sum_total=(sum+sum1+sum2+sum3+sum4);
vat=(sum_total*7)/100;
sum_vat=(sum_total+vat);
strOut="ผลรวม="+sum_total;
strOut=strOut+"ราคารวมภาษี 7% ="+sum_vat+"\n";
JOptionPane.showMessageDialog(null,strOut);
}
}
JAVA มือใหม่ ช่วยหน่อยครับ
ต้องเปลี่ยนค่าตัวไหนบ้างครับ
โค๊ตตัวอย่าง
import javax.swing.*;
class lab02
{
public static void main(String[] args)
{
String strIn,strOut;
int name,price,amount,sum,sum_total,vat,sum_vat;
strIn= JOptionPane.showInputDialog(null,"ชื่อสินค้า1");
name=Integer.parseInt(strIn);
strIn= JOptionPane.showInputDialog(null,"ราคาสินค้า1");
price=Integer.parseInt(strIn);
strIn= JOptionPane.showInputDialog(null,"จำนวนสินค้า1");
amount=Integer.parseInt(strIn);
โค๊ตเต็ม
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้