Guest User

Untitled

a guest
Jan 21st, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. import jpb.*;
  2.  
  3. public class ConvertDate {
  4. public static void main (String[] args) {
  5.  
  6. SimpleIO.prompt("Enter date to be converted:");
  7. String data = SimpleIO.readLine();
  8.  
  9. int firstSpace = data.indexOf(" ");
  10. String month = data.substring(0, firstSpace);
  11. String lowercaseMonth = month.toLowerCase();
  12. int secondSpace = data.indexOf(" ");
  13. String dd = data.substring (0, Trim(firstSpace), secondSpace);
  14. int thirdSpace = data.substring(" ");
  15. String yyyy = data.substring(0, Trim(firstSpace, secondSpace), thirdSpace);
  16. System.out.println("Converted date:" + dd + lowercaseMonth + yyyy );
  17. }
  18. }
Add Comment
Please, Sign In to add comment