成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

JAVA實(shí)現(xiàn)打印ascii碼表代碼

瀏覽:3日期:2022-08-27 10:31:00

我就廢話不多說了,大家還是直接看代碼吧~

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(); }}

補(bǔ)充知識(shí):java 顯示ASCII碼字符表打印從!到~的字符,每行十個(gè)字符

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個(gè)。 System.out.println('n'); } System.out.println('n');}}}

運(yùn)行結(jié)果:

! ' # $ % & ’ ( ) * + , - . / 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實(shí)現(xiàn)打印ascii碼表代碼就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Java
相關(guān)文章: