Guest User

Untitled

a guest
Oct 22nd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public class isCloudy {
  2. public static void main(String[] args) {
  3. if (args[0].equals("cloudy")) {
  4. System.out.println("rainy");
  5. } else {
  6. System.out.println("sunny");
  7. }
  8. }
  9. }
Add Comment
Please, Sign In to add comment