DISQUS

DISQUS Hello! Tech-Recipes is using DISQUS, a powerful comment system, to manage its comments. Learn more.

Community Page

Tech-Recipes

Cookbook of Tech Tutorials
Jump to original thread »
Author

Java while-do and do-while loop syntax | Java programming | Tech-Recipes

Started by qdideas · 9 months ago

No excerpt available. Jump to website »

6 comments

  • I need a java program that will repeatedly read temperatures in Fahrenheit and convert them to Celsius until a temperature > 212 F is entered. I really need this, please, and thank you. mbnumba14@yahoo.com(email address)

    Here is my java program:
    import java.util.*;
    // Converter.java
    public class Converter
    {
    public static void main(String[] args)
    {
    Scanner sc = new Scanner(System.in);
    System.out.print("Enter temp: ");
    int temp = sc.nextInt();
    System.out.println(convertToC(temp));
    }
    public static int convertToC(int temp)
    {
    return ((temp - 32 ) * 5/9);
    }
    }
    .
  • can you help me?i need any program on java using do while loop statement..i badly need it..email it here babytsk27_iilamagawaii_mac518@yahoo.com..thanks.
  • it is best site
  • please send me best language programs at my e-mail. waseemwaheed_31@yahoo.com
  • how can i create a program like this...
    pls help me
    Design and implement a program using while and for loop that will prompt the user to enter a number. The program will give all numbers that divide that number.
    Example:
    Please enter a number: 36
    Numbers dividing 36 are: 1 2 3 4 6 9 12 18 36
  • do while.... where it will be used.

Add New Comment

Returning? Login