記賬app源碼
A. 大學生適合的手機app有哪些
今日推薦:
大學生必備6款小眾寶藏app
學習/自律
打卡/文藝
大家好鴨,今天為大學生們准備了6款寶藏app,集美貌、功能於一身,相信小可愛們一定會喜歡它們噠~
show time·
01 百詞斬
一款全免暢聽音樂app~海量曲庫免費聽!3千萬曲庫,流行、網紅、古風、動漫、懷舊金曲、搖滾、電音、說唱、民謠、日語、歐美、韓語,所有歌曲應有盡有~海量曲庫免費聽!3千萬曲庫,流行、網紅、古風、動漫、懷舊金曲、搖滾、電音、說唱、民謠、日語、歐美、韓語,所有歌曲應有盡有~小可愛們平時學習結束後可以用這個軟體聽聽歌,休息一下哦~
重要的是 全!部!免!費!
B. Shark(鯊魚記賬系統)–附源碼
Shark(鯊魚記賬系統)–附源碼
package com.shayu.note;
import java.util.Scanner;
public class SharkSystem {
// //下面開始循環
while (flag) {
//或蔽開機界面
System.out.println("-----歡迎使用鯊魚記賬系統-----");
System.out.println("1,收支明細");
System.out.println("2,登記收入");
System.out.println("3,登記支出");
System.out.println("4,退出系統");
System.out.println("請按照提衫鄭州示選擇你要使叢孝用的的功能--");
Scanner scanner = new Scanner(System.in);//判斷用戶輸入是否符合要求
int choice = scanner.nextInt();//選擇
//檢測用戶輸入的數據並返回相應的請求結果
while (choice != 1 & choice != 2 & choice != 3 & choice != 4) {
System.out.println("請重新輸入--");
int newchoice = scanner.nextInt();
choice = newchoice;
}
}
package com.shayu.note;
import java.util.Scanner;
//鯊魚記賬系統
public class Shark {
public static void main(String[] args) {
SharkSystem shark=new SharkSystem();
shark.StartSystem();
}
}