[text] QWERTY7897987

Viewer

copydownloadembedprintName: QWERTY7897987
  1. import java.util.*;
  2. public class Main {
  3.  
  4.         public static void main(String[] args){
  5.                 //fill the code here
  6.                 Scanner sc= new Scanner(System.in);
  7.                 System.out.println("Enter the country name");
  8.                 String s=sc.nextLine();
  9.                 System.out.println("Enter the country code");
  10.                 String c=sc.nextLine();
  11.                 System.out.println("Enter the isd code");
  12.                 String n=sc.nextLine();
  13.                 Country co=new Country(s,c,n);
  14.                 System.out.println("Country Name : "+co.getCountry());
  15.                 System.out.println("Country Code : "+co.getCode());
  16.                 System.out.println("ISD Code : "+co.getNum());
  17.                
  18.         }
  19.  
  20. }
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52. public class Country 
  53.     // Instance Variables 
  54.     String name; 
  55.     String  countryCode; 
  56.     String isdCode; 
  57.    
  58.     // Constructor Declaration of Class 
  59.     public Country(String name, String countryCode,String isdCode) 
  60.     { 
  61.         this.name = name; 
  62.         this.countryCode= countryCode; 
  63.         this.isdCode= isdCode; 
  64.     } 
  65.    
  66.     // method 1 
  67.     public String getCountry() 
  68.     { 
  69.         return this.name; 
  70.     } 
  71.    public String getCode() 
  72.     { 
  73.         return this.countryCode; 
  74.     } 
  75.    public String getNum() 
  76.     { 
  77.         return this.isdCode; 
  78.     } 
  79. }

Editor

You can edit this paste and save as new:


File Description
  • QWERTY7897987
  • Paste Code
  • 20 May-2024
  • 1.42 Kb
You can Share it: