Advertisement
sujonshekh

spelling number test

Jun 2nd, 2016
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.57 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package javaapplication1;
  7.  
  8. /**
  9.  *
  10.  * @author Sharif
  11.  */
  12. public class spelltest {
  13.     public static void main(String[] args) {
  14.        int val=20;
  15.        int tenth=val%10;
  16.        int oneth=val/10;
  17.        if(val==0)
  18.            System.out.println("zero");
  19.      if(val<100)
  20.      {
  21.        if(val>=1 && val<=10)
  22.        {
  23.        spell(val);
  24.        System.out.println();
  25.        }
  26.        else if(val>10 && val<=19)
  27.        {
  28.            if(val==11)
  29.                System.out.println("eleven");
  30.            else if(val==12)
  31.                System.out.println("twelve");
  32.            else if(val==13)
  33.                System.out.println("thirteen");
  34.            else if(val==14)
  35.                System.out.println("fourteen");
  36.            else if(val==15)
  37.                System.out.println("fifteen");
  38.            else if(val>15 && val<=19)
  39.            {
  40.                spell(tenth);
  41.                System.out.println("teen");
  42.            }
  43.        }
  44.        else if(val>=20 && val<=99)
  45.        {
  46.         if(oneth==2)
  47.             System.out.print("twenty ");
  48.         else if(oneth==3)
  49.             System.out.print("thirty ");
  50.         else if(oneth==4)
  51.             System.out.print("forty ");
  52.         else if(oneth==5)
  53.             System.out.print("fifty ");
  54.         else if(oneth==6)
  55.             System.out.print("sixty ");
  56.         else if(oneth==7)
  57.             System.out.print("seventy ");
  58.         else if(oneth==8)
  59.             System.out .print("eighty ");
  60.         else if(oneth==9)
  61.             System.out .print("ninety ");
  62.             spell(tenth);
  63.             System.out.println();
  64.        }
  65.       }  
  66.      else{
  67.           System.out.println("you have to give the value of val bellow 100");
  68.          }
  69.     }  
  70.     static void spell(int num)
  71.     {
  72.         if(num==1)
  73.             System.out .print("one");
  74.         else if(num==2)
  75.             System.out .print("two");
  76.         else if(num==3)
  77.             System.out .print("three");
  78.         else if(num==4)
  79.             System.out .print("four");
  80.         else if(num==5)
  81.             System.out .print("five");
  82.         else if(num==6)
  83.             System.out .print("six");
  84.         else if(num==7)
  85.             System.out .print("seven");
  86.         else if(num==8)
  87.             System.out .print("eight");
  88.         else if(num==9)
  89.             System.out .print("nine");
  90.         else if(num==10)
  91.             System.out.print("ten");
  92.     }
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement