Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class Lesson_33_Activity_One {
  2. public static void upper(String[] s){
  3. for(int i = 0;i < s.length;i++){
  4. s[i] = s[i].toUpperCase();
  5. }
  6. }
  7. public static void main(String[] args) {
  8.  
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement