JAVA實現打印ascii碼表代碼
我就廢話不多說了,大家還是直接看代碼吧~
package com.jalor;public class AAAA { public static void main(String[] args) { outputA(65); outputA(97); } // 打印ascii碼表 public static void outputA(int count){ for (int i = 0; i < 26; i++) { System.out.print((char)(count+ i)); } System.out.println(); }}
補充知識:java 顯示ASCII碼字符表打印從!到~的字符,每行十個字符
public class ASCIITable {public static void main(String[] args) {{ int i=0; int count=0; for(i=33;i<=126;i++) { System.out.printf('%3c',i); count++; if(count%10==0)//這里改為10就是每行打印10個。 System.out.println('n'); } System.out.println('n');}}}
運行結果:
! ' # $ % & ’ ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~
以上這篇JAVA實現打印ascii碼表代碼就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持好吧啦網。
相關文章: