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

HW7.11

时间:2016-08-30 17:51:15      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

技术分享

 

 1 import java.util.Scanner;
 2 
 3 public class Solution
 4 {
 5     public static void main(String[] args)
 6     {
 7         Scanner input = new Scanner(System.in);
 8         System.out.print("Enter a number between 0 and 511: ");
 9         int number = input.nextInt();
10 
11         input.close();
12 
13         char[] chArray = Integer.toBinaryString(number).toCharArray();
14         char[][] displayArray = new char[3][3];
15 
16         for(int i = 0; i < 3; i++)
17         {
18             for(int j = 0; j < 3; j++)
19             {
20                 displayArray[i][j] = chArray[i * 3 + 1];
21                 if(displayArray[i][j] == ‘0‘)
22                     System.out.print(‘H‘ + " ");
23                 else
24                     System.out.print(‘T‘ + " ");
25             }
26             System.out.println();
27         }
28     }
29 }

 

HW7.11

标签:

原文地址:http://www.cnblogs.com/wood-python/p/5822438.html

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