Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1.  
  2. public class Automatic
  3. {
  4.     public static void main(String[] arg)
  5.     {
  6.         String str = "Information and Communication Technology";
  7.         str = str.replace('o', 'O');
  8.         System.out.println(str);
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement