Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.71 KB | None | 0 0
  1. package edu.myuni1001;
  2.  
  3. public class Main {
  4.  
  5.     public static void main(String[] args) {
  6.  
  7.         char gender = 'M';
  8.  
  9.         if(gender=='M'){
  10.             System.out.println("You are a girl");
  11.         }
  12.         else{
  13.             System.out.println("You are a boy");
  14.         }
  15.  
  16.         int month = 2;
  17.  
  18.         if(month==1){
  19.             System.out.println("January");
  20.         }
  21.         else if(month==2){
  22.             System.out.println("February");
  23.         }
  24.         else{
  25.             System.out.println("Other month");
  26.         }
  27.  
  28.         double mark = 5;
  29.  
  30.         if(mark<5){
  31.             System.out.println("Fail");
  32.         }else {
  33.             System.out.println("Pass");
  34.         }
  35.  
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement