睡不着,写了个数羊小程序
2021/5/4 12:28:52
本文主要是介绍睡不着,写了个数羊小程序,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
最多数99999只羊,数多了电脑也累
1 import java.util.HashMap; 2 import java.util.Map; 3 4 public class CountingSheep { 5 6 private static String[] units = {"","十","百","千","万"}; 7 private static Map<Integer,String> numMap = new HashMap<>(); 8 9 static { 10 numMap.put(1,"一"); 11 numMap.put(2,"二"); numMap.put(3,"三"); 12 numMap.put(4,"四"); numMap.put(5,"五"); 13 numMap.put(6,"六"); numMap.put(7,"七"); 14 numMap.put(8,"八"); numMap.put(9,"九"); 15 } 16 17 private String readAs(int num) { 18 if(num >= 100000) return "羊太多了"; 19 if(num >= 10 && num < 20) { 20 if(num == 10) return "十"; 21 else { 22 return "十" + numMap.get(num % 10); 23 } 24 } 25 StringBuilder res = new StringBuilder(); 26 int indexOfUnits = 0; 27 while (num > 0) { 28 int c = num % 10; 29 if(c != 0) { 30 res.insert(0,numMap.get(c) + units[indexOfUnits]); 31 }else { 32 if(res.length() != 0 && !res.substring(0,1).equals("零")) { 33 res.insert(0,"零"); 34 } 35 } 36 indexOfUnits += 1; 37 num /= 10; 38 } 39 return res.toString(); 40 } 41 42 public static void main(String[] args) { 43 int numOfSheep = 99999; 44 CountingSheep countingSheep = new CountingSheep(); 45 for (int i=1; i<=numOfSheep; i++) { 46 System.out.println(countingSheep.readAs(i)+"只羊"); 47 } 48 } 49 }
这篇关于睡不着,写了个数羊小程序的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-22微信小程序的接口信息py可以抓到吗?-icode9专业技术文章分享
- 2024-11-22怎样解析出微信小程序二维码带的参数?-icode9专业技术文章分享
- 2024-11-22微信小程序二维码怎样解析成链接?-icode9专业技术文章分享
- 2024-11-22微信小程序接口地址的域名需要怎么设置?-icode9专业技术文章分享
- 2024-11-22微信小程序的业务域名有什么作用-icode9专业技术文章分享
- 2024-11-22微信小程序 image有类似html5的onload吗?-icode9专业技术文章分享
- 2024-11-22微信小程序中怎么实现文本内容超出行数后显示省略号?-icode9专业技术文章分享
- 2024-11-22微信小程序怎么实现分享样式定制和图片定制功能?-icode9专业技术文章分享
- 2024-11-20微信小程序全栈教程:从零开始的全攻略
- 2024-11-19微信小程序全栈学习:从零开始的完整指南