Results 1 to 1 of 1
Thread: Output problem
- 01-31-2008, 06:39 PM #1
Member
- Join Date
- Jan 2008
- Posts
- 36
- Rep Power
- 0
Output problem
I have code to convert meters to feet and inches...it compiles and runs but the output is giving me feet in decimals and then 1 inch....can someone look at my code to see how to make it give me feet without a decimal and inches without a decimal.
HERE MS MY CODE
------------------------------------------------------------------------
Java Code:// Convert from Meters to Feet and Inches //The program should repeatedly input a length in meters //and then print that length in feet and inches. import java.util.Scanner; public class MeterToFtIn { public static void main(String[ ] argv) { double meter, f, i; String more; Scanner con = new Scanner(System.in); System.out.print("Do you wish to input another length in meters: "); more = con.nextLine( ); more = more.toUpperCase( ); while(more.charAt(0) == 'Y') { System.out.print("Enter length in meters: "); meter = con.nextDouble( ); double feet = meter * 3.28083989501312; f = (int) feet; int inches = (int) (12 * (feet - f) + 0.5); System.out.print(" The length is "); if (feet == 1) System.out.print(feet + " foot "); else System.out.print(feet + " feet "); if (inches == 1) System.out.println(inches + " inch."); else if (inches > 1) System.out.println(inches + " inches."); else System.out.println("."); System.out.print("Do you wish to input another length in meters: "); more = con.next( ); more = more.toUpperCase(); } } }
Similar Threads
-
How to redirect the output
By Java Tip in forum java.ioReplies: 0Last Post: 04-04-2008, 02:36 PM -
Output to excel
By abhiN in forum New To JavaReplies: 2Last Post: 03-07-2008, 01:19 AM -
output
By Camden in forum New To JavaReplies: 3Last Post: 12-01-2007, 10:34 PM -
No output shown
By ai_2007 in forum Advanced JavaReplies: 4Last Post: 07-10-2007, 09:26 AM -
get the output from whoami
By gary in forum Advanced JavaReplies: 2Last Post: 06-12-2007, 01:05 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks