반응형
Notice
Recent Posts
Recent Comments
Link
코드 짜는 티모
코드 깔끔하게 업로드 (Color Scripter) 본문
반응형
< 코드 깔끔하게 업로드 (Color Scripter) >
그냥 올려도 되는데 깔끔하게 코드 업로드 하면 좋잖아요~
Color Scripter !
사용법도 쉽고 그냥 원래 개발하던 환경마냥 나오니깐 보기도 편하다~
내 코드 다른사람이 이용할때 긁어서 복사해도 문제없구
사용하면
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | package test; import java.util.Scanner; class alpha { public static void main(String[] args) { int cnt[] = new int[26]; Scanner sc = new Scanner(System.in); System.out.print("Please enter a string: "); String str = sc.nextLine(); for (int i = 0; i < str.length(); i++) { char ch = str.toUpperCase().charAt(i); if(Character.isLetter(ch)) cnt[ch - 'A']++; } System.out.println("=== 각 문자의 수 ==="); for (int i = 0; i < 26; i++) { System.out.println((char) (65 + i) + " : " + cnt[i]); } } } |
이런식으로 이쁘게 나온답니당 색갈도 구분되고~
티스토리에서 코드 올리기~!
반응형
'이것저것' 카테고리의 다른 글
컴퓨터 자동종료 예약 (0) | 2023.06.12 |
---|---|
NGROK (0) | 2021.08.01 |
[티스토리] 네이버 검색노출, RSS, 웹마스터도구 (1) | 2018.12.21 |
[티스토리] 구글 검색노출, RSS, 웹마스터도구 (2) | 2018.12.21 |
인터넷으로 코딩 - 클라우드IDE (0) | 2018.12.21 |
Comments