摘要:
题目: Given any string of N (≥) characters, you are asked to form the characters into the shape of U. For example, helloworld can be printed as: h d e l 阅读全文
摘要:
题目:People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represented by a 6-digit number, w 阅读全文
摘要:
题目: The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors the 阅读全文
摘要:
题目:At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the d 阅读全文
摘要:
题目:Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. 给一个非负整数,你的任务是 阅读全文
摘要:
Calculate a+b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less tha 阅读全文
摘要:
public class Main { static int []a = new int[10]; public static void main(String[] args) { dfs(90,9); } public static void outpu(){ for(int i=9;i>=0;i 阅读全文