Advertisement
LemmingAvalanche

hello world with iteration

Jan 18th, 2023
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. package name.khaugsbakk;
  2.  
  3. public class Main {
  4. public static void main(String[] args) {
  5. var h = "Hello world!";
  6. for (char c : h.toCharArray()) {
  7. System.out.print(c);
  8. }
  9. System.out.println();
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement