第六章第三十七题(格式化整数)(Format an inte…
2020-05-26 16:07:13来源:博客园 阅读 ()
第六章第三十七题(格式化整数)(Format an integer) - 编程练习题答案
6.37(格式化整数)使用下面的方法头编写一个方法,用于将整数格式化为指定宽度:
public static String format(int number, int width)
方法为数字number返回一个带有一个或多个以0作为前缀的字符串。字符串的位数就是宽度。比如,format(34,4)返回0034,format(34,5)返回00034。如果数字宽于指定宽度,方法返回该数字的字符串表示。比如,format(34,1)返回34。
6.37(Format an integer)Write a method with the following header to format the integer with the specified width.
public static String format(int number, int width)
The method returns a string for the number with one or more prefix 0s. The size of the string is the width. For example, format(34, 4) returns 0034 and format(34, 5) returns 00034. If the number is longer than the width, the method returns the string representation for the number. For example, format(34, 1) returns 34.
Write a test program that prompts the user to enter a number and its width, and displays a string returned by invoking format(number, width).
下面是参考答案代码:
// https://cn.fankuiba.com
import java.util.Scanner;
public class Ans6_37_page205 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter a number: ");
int number = input.nextInt();
System.out.print("Enter the number width: ");
int width = input.nextInt();
System.out.println(format(number,width));
}
public static String format(int number, int width) {
String format = "";
int numberLenth = (number+"").length();
if (numberLenth < width) {
for (int i = 1; i <=width-numberLenth; i++)
format = format + "0";
return format+number;
}
else
return ""+number;// String strNumber = String.valueOf(number)
}
}
适用Java语言程序设计与数据结构(基础篇)(原书第11版)Java语言程序设计(基础篇)(原书第10/11版)更多
原文链接:https://www.cnblogs.com/in2013/p/12969089.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:位运算符
- Spring Security OAuth 格式化 token 输出 2020-06-08
- 第六章第三十八题(生成随机字符)(Generate random charact 2020-06-02
- 第六章第三十五题(几何:五边形的面积)(Geometry: area of 2020-05-24
- 第六章第三十四题(打印日历)(Print calendar) - 编程练习 2020-05-23
- 第六章第三十三题(当前日期和时间)(Current date and time 2020-05-22
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash