Advertisement
apez1

Term 1: Lesson 33 - Coding Activity 1

Nov 24th, 2018
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1. package project;
  2.  
  3. import java.util.Scanner;
  4. import java.math.*;
  5.  
  6. public class newTest {
  7.    
  8.     static Scanner scanner = new Scanner(System.in);
  9.  
  10.  
  11.    
  12.    
  13.     public static void upper(String list[]) {
  14.        
  15.         for(int i = 0; i < list.length; i++) {
  16.            
  17.             list[i] = list[i].toUpperCase();
  18.             System.out.println(list[i]);
  19.         }
  20.        
  21.        
  22.        
  23.        
  24.        
  25.     }
  26.    
  27.    
  28.     public static void main(String[] args) {   
  29.            
  30.      
  31.     }
  32.    
  33.    
  34.    
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement