Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1.  
  2.  
  3. public class Testklasse
  4. {
  5.  
  6. public static void main(String[] args) {
  7. String str = "Nachricht";
  8. int erste= str.charAt(0);
  9. System.out.println((char) erste);
  10.  
  11. int[] array = new int[str.length()];
  12.  
  13. for (int i = 0; i < str.length(); i++){
  14.  
  15.  
  16. }
  17.  
  18.  
  19. }
  20.  
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement