import java.util.*;
網(wǎng)站的建設(shè)成都創(chuàng)新互聯(lián)專注網(wǎng)站定制,經(jīng)驗(yàn)豐富,不做模板,主營網(wǎng)站定制開發(fā).小程序定制開發(fā),H5頁面制作!給你煥然一新的設(shè)計(jì)體驗(yàn)!已為成都混凝土攪拌罐等企業(yè)提供專業(yè)服務(wù)。
public class s {
static int x,xx,y,yy; static double sum=0;
public static void main(String[] args)
{
String answer="y";double h=0;
Scanner input=new Scanner(System.in);
System.out.println("請(qǐng)輸入客戶數(shù):");
int m=input.nextInt();
int n=m*3;
tostring();
do
{
order();
h+=(s(x,xx))+(d(y,yy));
System.out.println("是否繼續(xù):");
answer=input.next();
if(answer.equals("n"))
break;
}while(true);
System.out.println(h+n);
}
static void tostring()
{
System.out.println("菜單");
System.out.println("食品:");
System.out.println("1咖喱牛肉飯¥40.00");
System.out.println("2壽司套餐¥65.00");
System.out.println("3揚(yáng)州市消防3米¥45.00");
System.out.println("4沙朗牛排和意大利面¥72.00");
System.out.println("5雞肉蔬菜卷¥42.00");
System.out.println("飲料:");
System.out.println("21軟飲料¥10.00");
System.out.println("22紅葡萄酒¥15.00");
System.out.println("23啤酒¥15.00");
}
static double s(int f,int x)
{
double p=0;
switch(f)
{
case 1:p=40.00;break;
case 2:p=65.00;break;
case 3:p=45.00;break;
case 4:p=72.00;break;
case 5:p=42.00;break;
}
sum=p*x;
return sum;
}
static double d(int f,int x)
{
double p=0;
switch(f)
{
case 21:p=10.00;break;
case 22:p=15.00;break;
case 23:p=15.00;break;
}
sum=p*x;
return sum;
}
static void order()
{
Scanner input=new Scanner(System.in);
System.out.println("請(qǐng)選擇食品:");
x=input.nextInt();
System.out.println("請(qǐng)選擇份數(shù):");
xx=input.nextInt();
System.out.println("請(qǐng)選擇飲料:");
y=input.nextInt();
System.out.println("請(qǐng)選擇瓶數(shù):");
yy=input.nextInt();
}
}
加分!?。。?!
這個(gè)很簡單的啦,新建一個(gè)類專門放這些數(shù)據(jù)。
class?Order
{
int?id;
String?name;
double?price;
}
//在main方法中,新建存放數(shù)據(jù)的數(shù)組
Scanner?scan=new?Scanner(System.in);
Order[]?list=new?Order[5];
for(int?i=0;ilist.size();i++)
{
list[i]=new?Order();
//為每一個(gè)數(shù)據(jù)賦值,通過鍵盤或者預(yù)設(shè),這個(gè)你自己決定嘍
list[i].id=i+1;;
list[i].name=scan.next();
list[i].price=scan.nextDouble();
}
//不知道你是怎么安排業(yè)務(wù)邏輯的,我舉個(gè)例子
double?allPrice=0;
System.out.println("Input?the?id?of?food");
//循環(huán)...這里不好明寫,輸入id
int?now=scan.nextInt();
allPrice+=list[now-1].id;
//循環(huán)結(jié)束,輸出
System.out.println(allPrice);
打開控制面板中的管理工具,點(diǎn)擊數(shù)據(jù)源ODBC,在系統(tǒng)DSN添加新的數(shù)據(jù)源,即是你連接的數(shù)據(jù)庫。再打開java軟件,新建java文件,加載JDBC-ODBC橋連接:Class.forName("sun.jdbc.odbc.JdbcOdbcDriver")
建立數(shù)據(jù)庫連接:
Connection conn=DriverManager.getConnection("jdbc:odbc:數(shù)據(jù)源名")
進(jìn)行數(shù)據(jù)庫操作
Statement st=conn.createStatement(int type,int concurrency);