How to create a loop for below code?

How do I create an average application using java with these loops?

  • I have to create an average application using a for loop, a while loop, and a do while loop. NOT in the same program. so far I have public class stuff{ public static void main (String [] args){ int num1,num2,num3; int enter; Scanner input = new Scanner(System.in); System.out.print("Enter a number:"); num1=input.nextInt(); System.out.print("Enter a number:"); num2=input.nextInt(); System.out.print("Enter a number:"); num3=input.nextInt(); for (x>0){ { And then I get stuck there for the for loop. As for the while and do while loop, I have no idea how to do it. 10 pts to best answer and need asap. Thanks to anyone who can provide the code.

  • Answer:

    for(initializer;condition to continue;increment/decrement) for(int i=0;i<10;i++){ //loop var "i" starting at 0 and incrementing by 1 each time while it is less than 10 } while(true){ //continuous loop } //do while means check after loop is complete so it will run once every time do{ //dowhile }while(x<10); compile this and try it for(int i=0;i<10;i++){ System.out.println(i); } also compile this. it should run once int x=15; do{ System.out.println(x); }while(x<10);

Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

Hope this will help import java.util.Scanner; public class stuff{ public static void main (String [] args){ int num[]=new int[3]; int count,total=0; double avg=0.0; Scanner input = new Scanner(System.in); for(int i=0;i<=2;i++){ System.out.print("Enter a number:"); num[i]=input.nextInt(); } count=num.length; //using for loop (iteration loop) for(int j=0;j<=2;j++){ total+=num[j]; } avg=(double)total/count; System.out.println("forloop average:"+avg); avg=0;total=0; //using while loop (conditional loop) runs only when the condition is true int i=0; while(i<count){ total+=num[i]; i+=1; } avg=(double)total/count; System.out.println("while loop average:"+avg); avg=0;total=0;i=0; //using do while loop same as while loop but it runs atleast once do{ total+=num[i]; i+=1; }while(i<count); avg=(double)total/count; System.out.println("do-while loop average:"+avg); } }

You need to write 3 separate programs. Variables are number, counter, average, and total In the loop you will input num, total = total + num, counter = counter +1 when done with loop average= total/counter

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.