摘要:一超市購物程序超市購物程序你要買什么輸入買多少份輸入的不是商品號還要買嗎要買輸入,不買輸入總共花了總共花了二登陸注冊
import java.util.Scanner;public class test2_3 { //超市購物程序 static double cash=0.0; public static double buy(){ System.out.println("你要買什么?輸入id"); Scanner scanner=new Scanner(System.in); int id=1; id=scanner.nextInt(); System.out.println("買多少份?"); int num=scanner.nextInt(); switch (id){ default: System.out.println("輸入的不是商品號"); break; case 1: cash+=8.8*num; break; case 2: cash+=10.0*num; break; case 3: cash+=18.8*num; break; case 4: cash+=12.5*num; break; case 5: cash+=15.5*num; } return cash; } public static void main(String[] args) { buy(); Scanner scanner=new Scanner(System.in); String choicey="Y"; String choicen="N"; System.out.println("還要買嗎?要買輸入Y,不買輸入N"); String ch=scanner.nextLine(); if(ch.equals(choicey)){ cash=buy(); } else if(ch.equals(choicen)){ System.out.println("總共花了"+cash); System.exit(1); } System.out.println("總共花了"+cash); }}
import java.util.HashMap;import java.util.Scanner;public class test2_6 { static HashMap<Integer,String> message=new HashMap<>();public static void login(){ System.out.println("這里是登陸界面"); System.out.println("請輸入賬號密碼"); Scanner scanner=new Scanner(System.in); int number=scanner.nextInt(); Scanner scanner1=new Scanner(System.in); String password=scanner1.nextLine(); if(message.get(number).equals(password)){ System.out.println("登陸成功"); } else { System.out.println("密碼不對哦,或者賬號不存在"); }}public static void register(){ System.out.println("這里是注冊界面"); System.out.println("請輸入賬號和密碼一行一個,賬號不能重復,長度僅限6位數"); System.out.println("tips:賬號純數字,密碼你隨意"); System.out.println("先輸入賬號吧,寶兒"); Scanner scanner=new Scanner(System.in); int number=scanner.nextInt(); System.out.println("輸密碼"); Scanner scanner1=new Scanner(System.in); String password=scanner1.nextLine(); message.put(number, password);}public static void check(){ System.out.println(message);}public static void exit(){System.exit(0);} public static void main(String[] args) { while (true){ System.out.println("這里是登陸注冊案例"); System.out.println("請選擇要做的操作:"); System.out.println("1.登陸"); System.out.println("2.注冊"); System.out.println("3.查看"); System.out.println("4.退出"); Scanner scanner=new Scanner(System.in); int choice=scanner.nextInt(); switch (choice){ default: System.out.println("選錯了。再來"); break; case 1: login(); break; case 2: register(); break; case 3: check(); break; case 4: exit(); break; } } }}
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/121122.html
摘要:前言最近太忙,代碼不做過多解釋,如有不懂的地方歡迎底下評論留言或提問。 前言 最近太忙,代碼不做過多解釋,如有不懂的地方歡迎底下評論留言或+qq 258111627...
摘要:一圖形的面積與周長計算程序輸入計算圓的周長面積輸入計算長方形的周長面積輸入圓的周長依次輸入長方形的長和寬面積是周長是面積是周長是二案例經理與員工工資代碼經理工資普通員工工資 ...
摘要:個人前端文章整理從最開始萌生寫文章的想法,到著手開始寫,再到現在已經一年的時間了,由于工作比較忙,更新緩慢,后面還是會繼更新,現將已經寫好的文章整理一個目錄,方便更多的小伙伴去學習。 showImg(https://segmentfault.com/img/remote/1460000017490740?w=1920&h=1080); 個人前端文章整理 從最開始萌生寫文章的想法,到著手...
摘要:目前,中關村黑馬程序員訓練營已成長為行業學員質量好課程內容深企業滿意的移動開發高端訓練基地,并被評為中關村軟件園重點扶持人才企業。黑馬程序員的學員篩選制度,遠比現在以上的企業招聘流程更為嚴格。系統的學習可以參考w3c的教程 web概念概述 * JavaWeb: * 使用Java語言開發基于互聯網的項目 * 軟件架構: 1. C/S: Client/Server 客戶端/服務...
閱讀 2490·2021-11-25 09:43
閱讀 2584·2021-11-16 11:50
閱讀 3279·2021-10-09 09:44
閱讀 3193·2021-09-26 09:55
閱讀 2833·2019-08-30 13:50
閱讀 1026·2019-08-29 13:24
閱讀 2068·2019-08-26 11:44
閱讀 2790·2019-08-26 11:37