显示字符 Exercise06_12

Posted cherrydream

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示字符 Exercise06_12相关的知识,希望对你有一定的参考价值。

 1 /**
 2  * @author 冰樱梦
 3  * 时间:2018年下半年
 4  * 题目:显示字符
 5  *1 2 3 4 5 6 7 8 9 : 
 6 ; < = > ? @ A B C D 
 7 E F G H I J K L M N 
 8 O P Q R S T U V W X 
 9 Y Z 
10  */
11 public class Exercise06_12 {
12     public static void main(String[] args){
13         printChars( ‘1‘, ‘Z‘,10);
14     }
15     public static void printChars(char ch1,char ch2,int numberPerLine){
16         int sum=0;
17         for(char i=ch1;i<=ch2;i++){
18             System.out.print(i+" ");
19             sum++;
20             if(sum%numberPerLine==0){
21             System.out.print("
");
22             }
23         }
24     }
25 }

 

以上是关于显示字符 Exercise06_12的主要内容,如果未能解决你的问题,请参考以下文章

金融应用,计算酬金 Exercise06_11

英尺和米之间的转换 Exercise06_09

《MIT 6.828 Lab 1 Exercise 12》实验报告

片段中的ListView不显示

Codeigniter 助手重复 HTML 代码片段

chaper3_exercise_Uva1585_score