Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package yehonatan1;
  2.  
  3. public class fix {
  4.  
  5. public static void main(String[] args) {
  6.  
  7.  
  8.  
  9. strs("abc","12");
  10. }
  11.  
  12.  
  13. public static void strs(String s1, String s2) {
  14. for (int i = 0; i < s1.length(); i++) {
  15. char char1 = s1.charAt(i);
  16. String str = char1 + s2;
  17. System.out.print(str);
  18.  
  19. }
  20.  
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement