Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package frst.program;
- import java.util.Scanner;
- /**
- *
- * @author Mitko
- */
- class FrstProgram {
- /**
- * @param args the command line arguments
- */
- public static void main(String[] args) {
- Scanner broj =new Scanner(System.in);
- double n;
- n=broj.nextDouble();
- if(n==1){System.out.println("Ponedelnik/Raboten den");
- }
- if(n==2){System.out.println("Vtornik/Raboten den");
- }
- if(n==3){System.out.println("Sreda/Raboten den");
- }
- if(n==4){System.out.println("Cetvrtok/Raboten den");
- }
- if(n==5){System.out.println("Petok/Raboten den");
- }
- if(n==6){System.out.println("Sabota/Raboten den");
- }
- if(n==7){System.out.println("Nedela/neraboten den");
- }
- if(n>7){System.out.println("Nadvor od interval");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment