Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // By: Sammy Samkough
- public class ArrayOfHope
- {
- public static void main(String[] args)
- {
- // declaration
- char ch[];
- // create
- ch = new char[26];
- char let = 65;
- // 1st loop
- for(int i = 0; i < 26; i++)
- {
- ch[i] = let;
- let++;
- }
- // 2nd loop
- for(int i = 0; i < ch.length; i++)
- {
- System.out.print(ch[i] + ", ");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment