SHOW:
|
|
- or go back to the newest paste.
| 1 | package com.company; | |
| 2 | ||
| 3 | import java.util.Scanner; | |
| 4 | ||
| 5 | public class Main {
| |
| 6 | ||
| 7 | public static void main(String[] args) {
| |
| 8 | char PI ='a'; | |
| 9 | char age = '1'; | |
| 10 | System.out.println((int)PI); | |
| 11 | System.out.printf("%1$c",(int)PI,age);
| |
| 12 | } | |
| 13 | } |