6 Star 0 Fork 0

xiaoxubupang/笔试代码仓库

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
thisa.txt 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
刘克进 提交于 2021-09-07 12:59 . thsi
import java.util.*;
public class baidu {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for (int i = 0; i < n; i++) {
int a = sc.nextInt();
ArrayList<Integer> a_wei = new ArrayList<Integer>();
while(a != 0){
a_wei.add(a%10);
a /= 10;
}
int res = 0;
int exp_10 = 1;
int flag = 0 ;
for (int j = 0; j < a_wei.size(); j++) {
int now_wei = a_wei.get(j);
if(now_wei >= 3)
now_wei = 3 ;
now_wei -= flag;
if(now_wei <= 0){
now_wei = 3;
flag = 1;
}
if(j == (a_wei.size()-1))
now_wei = 0;
res += now_wei * exp_10;
exp_10 *= 10;
}
System.out.println(res);
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/xiaoxubupang/written-test-code-warehouse.git
[email protected]:xiaoxubupang/written-test-code-warehouse.git
xiaoxubupang
written-test-code-warehouse
笔试代码仓库
master

搜索帮助