摘要:前言最近太忙,代碼不做過多解釋,如有不懂的地方歡迎底下評論留言或提問。
最近太忙,代碼不做過多解釋,如有不懂的地方歡迎底下評論留言或+qq 2581116279提問。
import java.util.Scanner;public class bank { public static void main(String[] args) { Person person=new Person(); while (true){ int choice=person.menu(); switch (choice){ default : System.out.println("不在操作范圍內,請重新選擇"); case 0: System.out.println("截止退出系統,你還有"+person.getMoeny()); person.exit(); break; case 1: System.out.println("你要存多少?請輸入,支持小數"); Scanner scanner1=new Scanner(System.in); double moneyAdd=scanner1.nextDouble(); person.addMoney(moneyAdd); System.out.println("存錢成功"); break; case 2: System.out.println("你要取多少錢“請輸入,支持小數"); Scanner scanner2=new Scanner(System.in); double delMoney=scanner2.nextDouble(); person.delMoney(delMoney); System.out.println("取錢成功"); break; } } }}class Person{ private double moeny=500; public void addMoney(double number){ moeny+=number; } public void delMoney(double number){ moeny-=number; } public void exit(){ System.exit(0); } public double getMoeny() { return moeny; } public int menu(){ System.out.println("這里是銀行存取款系統"); System.out.println("你現在有500元"); System.out.println("輸入1繼續存錢"); System.out.println("輸入2取錢"); System.out.println("0退出系統"); Scanner scanner=new Scanner(System.in); int choice=scanner.nextInt(); return choice; }}
import java.util.Scanner;public class studentVote { public static void main(String[] args) { Student students[]=new Student[10]; for (int i = 0; i <=9 ; i++) { students[i]=new Student(); } for (int i = 0; i <=9 ; i++) { students[i].id=i+1; } for (int j = 0; j <10; j++) { for (int i = 0; i <10 ; i++) { Scanner scanner=new Scanner(System.in); System.out.println("請投票,輸入學生編號即為投票"); int vote1=scanner.nextInt(); students[i].vote(students, vote1); } } for (int i = 0; i <10 ; i++) { System.out.println("這是投票情況"); System.out.println("學生ID"+students[i].id+"獲得的票數 "+students[i].voteNumber); } }}class Student { public int id = 0; public int voteNumber = 0; public Student() { this.voteNumber = 0; this.id++; } public void vote(Student students[], int id) { students[id-1].voteNumber++; System.out.println("感謝你的投票"); }}
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/121407.html
摘要:一超市購物程序超市購物程序你要買什么輸入買多少份輸入的不是商品號還要買嗎要買輸入,不買輸入總共花了總共花了二登陸注冊 一、2.3超市購物程序 import java...
摘要:一圖形的面積與周長計算程序輸入計算圓的周長面積輸入計算長方形的周長面積輸入圓的周長依次輸入長方形的長和寬面積是周長是面積是周長是二案例經理與員工工資代碼經理工資普通員工工資 ...
摘要:持續更新多年的編程語言排行榜,迎來了一個歷史性時刻第一次擁有一個新的領導者編程語言。黑馬程序員推出課程體系,除了個月的大綱課程學習以外,同時提供個月課程內容的在線學習提供給畢業之后進入工作崗位的學員繼續學習。 ...
摘要:目前,中關村黑馬程序員訓練營已成長為行業學員質量好課程內容深企業滿意的移動開發高端訓練基地,并被評為中關村軟件園重點扶持人才企業。黑馬程序員的學員篩選制度,遠比現在以上的企業招聘流程更為嚴格。系統的學習可以參考w3c的教程 web概念概述 * JavaWeb: * 使用Java語言開發基于互聯網的項目 * 軟件架構: 1. C/S: Client/Server 客戶端/服務...
閱讀 2769·2021-11-23 09:51
閱讀 3529·2021-10-08 10:17
閱讀 1260·2021-10-08 10:05
閱讀 1309·2021-09-28 09:36
閱讀 1832·2021-09-13 10:30
閱讀 2174·2021-08-17 10:12
閱讀 1669·2019-08-30 15:54
閱讀 2003·2019-08-30 15:53