- 博客(3)
- 收藏
- 关注
原创 2021-01-30
【问题描述】 在 1 至 2019 中,有多少个数的数位中包含数字 9? 注意,有的数中的数位中包含多个9,这个数只算一次。例如,1999这个数包含数字9,在计算只是算一个数 public class Main { public static void main(String[] args) { int sum = 0; for(int i = 1;i<=2019;i++){ String a = Integer.toString(i
2021-01-30 21:25:23
188
原创 蓝桥杯之技术总结1
一、.输入一个int类型数字,输入对应的小数点位数 1.DecimalFormat df = new DecimalFormat("#.00"); 其中: #:没有则为空 0:没有则补0 二、进制转换:8–>16,可以先转为10进制,再转为十六进制 ///String str4 = Integer.toString(i,x) ; ///10进制的数字i转换成x进制的字符串 /// System.out.println(Integer.parseInt(“对应进制格式”,这个字符串是多少进制));
2021-01-21 17:38:27
232
原创 PTA之奥特曼拯救世界
函数题: 1. char to_grade(int score) { char grade; if((score<0)||(score>100)){ grade=’ ‘; }else if(score>=95){ grade=‘A’; }else if(score>=85){ grade=‘B’; }else if(score>=70){ grade=‘C’; }else if(score>=60){ grade=‘D’; }else if(score<60){ g
2021-01-07 22:43:57
329
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人