蓝桥杯:卡片
for直接遍历即可:
import java.util.Scanner;
// 1:无需package
// 2: 类名必须Main, 不可修改
public class Main {
public static void main(String[] args) {
//每个卡片的数量
int array[] = {2021,2021,2021,2021,2021,2021,2021,2021,2021,2021};
//直接循环拼接卡片,然后在循环里面判断使用了的卡片,在数组里面自减即可
for(int i = 1;i<20210;i++){
//个位数的卡片
if(i<10){
array[i]--;
}else{
int temp = i;
while(temp>0){
int n = temp%10;
//当前位置的
蓝桥杯:卡片最先出现在Python成神之路。
共有 0 条评论