answersLogoWhite

0

This is best done with an array; that way, you can easily extend to more than three numbers. In Java, it would be something like this:

int myNumbers[] = {1, 5, 3};

int max = myNumbers[1];

for (int i = 1; i < myNumbers.length(); i++)
if (myNumbers[i] > max) max = myNumbers[i];



This is best done with an array; that way, you can easily extend to more than three numbers. In Java, it would be something like this:

int myNumbers[] = {1, 5, 3};

int max = myNumbers[1];

for (int i = 1; i < myNumbers.length(); i++)
if (myNumbers[i] > max) max = myNumbers[i];



This is best done with an array; that way, you can easily extend to more than three numbers. In Java, it would be something like this:

int myNumbers[] = {1, 5, 3};

int max = myNumbers[1];

for (int i = 1; i < myNumbers.length(); i++)
if (myNumbers[i] > max) max = myNumbers[i];



This is best done with an array; that way, you can easily extend to more than three numbers. In Java, it would be something like this:

int myNumbers[] = {1, 5, 3};

int max = myNumbers[1];

for (int i = 1; i < myNumbers.length(); i++)
if (myNumbers[i] > max) max = myNumbers[i];

User Avatar

Wiki User

15y ago

Still curious? Ask our experts.

Chat with our AI personalities

SteveSteve
Knowledge is a journey, you know? We'll get there.
Chat with Steve
LaoLao
The path is yours to walk; I am only here to hold up a mirror.
Chat with Lao
MaxineMaxine
I respect you enough to keep it real.
Chat with Maxine
More answers

This is best done with an array; that way, you can easily extend to more than three numbers. In Java, it would be something like this:

int myNumbers[] = {1, 5, 3};

int max = myNumbers[1];

for (int i = 1; i < myNumbers.length(); i++)
if (myNumbers[i] > max) max = myNumbers[i];

User Avatar

Wiki User

15y ago
User Avatar

Add your answer:

Earn +20 pts
Q: Write a program to find the largest of three numbers?
Write your answer...
Submit
Still have questions?
magnify glass
imp