Home Answers Viewqa JSP-Servlet Assigning ordinate numbers

 
 


Chow ah goon
Assigning ordinate numbers
2 Answer(s)      3 years and 6 months ago
Posted in : JSP-Servlet

View Answers

November 16, 2009 at 11:40 AM


Hi Friend,

Try the following code:


public class OrdinalNumber {
public static String ordinalNo(int value) {
int hunRem = value % 100;
int tenRem = value % 10;
if(hunRem - tenRem == 10) {
return "th";
}

switch (tenRem) {
case 1:
return "st";
case 2:
return "nd";
case 3:
return "rd";
default:
return "th";
}
}
public static void main(String[]args){
OrdinalNumber number=new OrdinalNumber();
int i=123;
String st=number.ordinalNo(i);
System.out.println(i+st);
}
}

Thanks

November 17, 2009 at 11:14 AM


Hi Friend,

For random number:

import java.util.*;
public class OrdinalNumber {
public static String ordinalNo(int value) {
int hunRem = value % 100;
int tenRem = value % 10;
if (hunRem - tenRem == 10) {
return "th";
}
switch (tenRem) {
case 1:
return "st";
case 2:
return "nd";
case 3:
return "rd";
default:
return "th";
}
}
public static void main(String[] args) {
OrdinalNumber number = new OrdinalNumber();
Random r=new Random();
int num=r.nextInt(100);
System.out.println(num);
String st = number.ordinalNo(num);
System.out.println( num + st);

}
}
Thanks









Related Pages:
Assigning ordinate numbers - JSP-Servlet
Assigning ordinate numbers  Hi all, I have a question to seek your help. How do I assign an ordinal number to a randomly generated number? For example is the generated number is 5, how do i write a code that will print
Assigning URL
Assigning URL  Actually i have created an attendance template, i can use it perfectly, now the problem is how can my team members access the attendance template without having the source file, i need to know how to assign a web
Assigning seats on an airplane
Assigning seats on an airplane  Hi How to write a java program (using swing classes) to assign seats on an airplane .Assume the airplane has 20 seats in first class(5 rows of 4 seats each, seperated by an aisle), and 180 seats
Assigning variable in mysql - SQL
Assigning variable in mysql  i have tables purchase, serialtable and salesdetail. i want to create a trigger that will fire on insert on salesdetails to update my purchase.quantityInstock column by selecting a productcode from
Assigning higher priority - Java Beginners
Assigning higher priority  Sir,plz help me to write a program which illustrate the 'effects of assigning higher priority to a thread'?  Hi Friend, Please visit the following link: http://www.roseindia.net/answers
PHP Numbers Variables
PHP Variables Numbers We already define that variables are used to store the values or information in the form text strings, numbers or array. A variable... you can used again and again.  You can also assign numbers in PHP variable
Numbers
Java NotesNumbers Two kinds of numbers. There are basically two kinds of numbers in Java and most other programming languages: binary integers (most commonly using the type int) and binary floating-point numbers (most commonly using
Assigning a value to JSP variable from a bean class. - JSP-Servlet
Assigning a value to JSP variable from a bean class.  Hi, I want to know how we can assign value to a JSP variable from a Java Bean. I am using Struts, JSTL. Which tags should I use to assign the value. e.g Kindly
automorphic numbers
automorphic numbers  how to find automorphic number in java   Hi Friend, Pleas visit the following link: Automorphic numbers Thanks
sorting numbers
sorting numbers  How to sort the numbers in ascending order   import java.util.*; class SortNumbers{ public static void main(String...=input.nextInt(); list.add(num); } System.out.println("Numbers
Prime Numbers
Prime Numbers  Create a complete Java program that allows the user to enter a positive integer n, and which then creates and populates an int array with the first n prime numbers. Your program should then display the contents
Numbers pyramid
Numbers pyramid  Hi sir, Can you please tell me how to output this using nested for loops? 1 2, 1 1, 2, 3 4, 3, 2, 1 1, 2, 3, 4, 5 6, 5, 4, 3, 2, 1 1, 2, 3, 4, 5, 6, 7 8, 7, 6, 5, 4, 3, 2, 1 1, 2, 3, 4, 5, 6, 7, 8, 9 10, 9, 8
Rational Numbers
Rational Numbers   Write and fully test a class that represents rational numbers. A rational number can be represented as the ratio of two integer values, a and b, where b is not zero. The class has attributes for the numerator
Hexadecimal numbers multiplication
Hexadecimal numbers multiplication  Sir, I have to multiply 128 bit hexadecimal numbers. Do u have any logic for this?? The numbers are like ab7564fa342b5412c34d9e67ab341b58
Addition of two numbers
Addition of two numbers  addition of two numbers
defining numbers in Java Script
defining numbers in Java Script  Explain about defining numbers in Java Script
multiply of 100 digits numbers
multiply of 100 digits numbers  multiplying 100 digits numbers to eachother
numbers divisible by 5 and 6
numbers divisible by 5 and 6  Find the first ten numbers which are greater than Long.MAX_VALUE divisible by 5 and 6
prime numbers - Java Beginners
prime numbers  Write a java program to find the prime numbers between n and m
Adding two numbers
Adding two numbers  Accepting value ffrom the keyboard and adding two numbers
Random numbers - Introduction
Java NotesRandom numbers - Introduction When to use random numbers There are many types of programs that use random numbers. Game programs use them... numbers. You might want to use random numbers to change the appearance
Grading Scheme
Java Notes: Grading Scheme There's nothing special about assigning points to each answer, but the overall grading scheme I use has a couple of twists...% is then either added to everyone's scores, or the numbers are scaled by multiplication
Grading Scheme
Java Notes: Grading Scheme There's nothing special about assigning points to each answer, but the overall grading scheme I use has a couple of twists...% is then either added to everyone's scores, or the numbers are scaled by multiplication
Generate Random Numbers
Generate Random Numbers  hi,,, Please give me answer with example How do you generate random numbers within a given limit with actionscript... This function generate random numbers with in given limit
random numbers - Java Beginners
random numbers  write a program to accept 50 numbers and display 5 numbers randomly  Hi Friend, Try the following code: import...); System.out.println("Enter 10 numbers: "); for(int i=0;i<10;i
odd numbers with loop
odd numbers with loop  get the odd numbers till 100 with for,while loop   Java find odd numbers: class OddNumbers { public static void main(String[] args) { for(int i=1;i<=100;i
recursion numbers - Java Beginners
recursion numbers  I need to use recursion to test all values from 0 to 20 and see if they are contain in a 1-D array with values: 2,4,6,8,10,12,14,16,18,20. The results of all numbers from 0-20 will be printed
Sum of positive and negative numbers
; import java.util.*; class Numbers { public static void main(String...=0,sum2=0; int num[]=new int[10]; System.out.println("Enter 10 numbers...]; } } System.out.println("Sum of positive numbers: "+sum2); System.out.println
Application for print pyramid of numbers
Application for print pyramid of numbers  What is the code for printing the numbers like 1 1 1 1 2 2 1 1 3 4 3 1 1 4 7 7 4 1
Sum of first n numbers
Sum of first n numbers  i want a simple java program which will show the sum of first n numbers....   import java.util.*; public class...; } System.out.println("Sum of Numbers from 1 to "+n+" : "+sum
random numbers - Java Beginners
to display the random numbers, but not twice or more. I mean i need a number to be display once. This code allows some numbers to be displayed more than once. Hi... Scanner(System.in); System.out.println("Enter 10 numbers: "); for(int i=0;i<10;i
Prime Numbers - IDE Questions
Prime Numbers  Create a program that calculates the prime numbers... numbers in rows of 10. Hint: Use a counter to count how many values are printed... = 0; System.out.println("Prime Numbers are:" ); for (int i = 1; i <
Perfect Numbers - Java Beginners
numbers. Use methods   Hi Friend, Try the following code: public
Random numbers - Development process
Random numbers  hi, How to generate unique random numbers between range like(10 to 50)  Hi friend, class RandomNumber { public static void main(String[] args) { //set the variable aNumber
print numbers in traingle shape
print numbers in traingle shape  1 22 333 4444 i want output like this please help me   class Pyramid { public static void main(String[] args) { for(int i=1;i<=4;i++){ for(int j=1;j<
Divide 2 numbers
Divide 2 numbers  Write a java program to divide 2 numbers. Avoid division by zeor by catching the exception.   class Divide { public static void main(String[] args) { try{ int num1=8
Prime Numbers from range
Prime Numbers from range  how to find prime numbers in a given range which are palindromes??   Hi Friend, Try the following code: import java.util.*; public class PrimeAndPalindrome { static final int MAXNUMBER
Applet for add two numbers
Applet for add two numbers  what is the java applet code for add two numbers?   import java.awt.Graphics; import javax.swing.*; public...); add(text2); label3 = new Label("Sum of Two Numbers
prime numbers application
prime numbers application  how to add a comment indicating that the method will determine if a number is a prime number. In the next line add the method header for this method which will be called isPrime. This method returns
permutstion of numbers in java
permutstion of numbers in java  Is it possible to enter the number in a char so that permutation of a number can be acheived which will be in the form of string????? here is the coding i did...it worked really well when i
Java program - convert words into numbers?
Java program - convert words into numbers?   convert words into numbers?   had no answer sir
convert numbers to strings using JavaScript
convert numbers to strings using JavaScript  How to convert numbers to strings using JavaScript
How to put text file numbers to array and check the position of numbers?
How to put text file numbers to array and check the position of numbers?   I have numbers in text file data.txt 12 9 8 3 1
Convert Roman Numbers to Decimal Numbers
Convert Roman Numbers to Decimal Numbers In the previous section, we have illustrated the conversion of Decimal Numbers to Roman. Here we are doing vice-versa i.e, In this sd For this, we have allowed the user to enter Roman Number like

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.