码迷,mamicode.com
首页 > 其他好文 > 详细

M笔试

时间:2021-04-27 14:19:47      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:load   can   new   image   static   笔试   int   mamicode   ann   

此博客链接:

题解:

找大写26个字母的位置,26个字母可以重复M个

输入为N M,N测试用例个数,M为字母重复个数,

输出字母和处于第几位

代码

public class leetcode {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int n = 0, c = 0;
// char ch[]=new char[26];
char ch[] = { ‘A‘, ‘B‘, ‘C‘, ‘D‘, ‘E‘, ‘F‘, ‘G‘, ‘H‘, ‘I‘, ‘G‘, ‘K‘,
‘L‘, ‘M‘, ‘N‘, ‘O‘, ‘P‘, ‘Q‘, ‘R‘, ‘S‘, ‘T‘, ‘U‘, ‘V‘, ‘W‘,
‘X‘, ‘Y‘, ‘Z‘ };
while (scanner.hasNextInt()) {
n = scanner.nextInt();
c = scanner.nextInt();
// System.out.println(n);
// System.out.println(c);
for (int i = 0; i < n; i++) {
int a = scanner.nextInt();
int num = a / c;
int nums = a % c;

System.out.print(ch[num]);
System.out.print(nums);
// System.out.println();
}
}
// System.out.println("nihao ");
// int[][] prices = new int[6][2];

}
}

 

结果

技术图片

 

M笔试

标签:load   can   new   image   static   笔试   int   mamicode   ann   

原文地址:https://www.cnblogs.com/ping2yingshi/p/14702766.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!