answersLogoWhite

0


Best Answer

1. READ the values of 3 numbers A, B and C

2. IF the value of A>that of B THEN

GOTO step 3

ELSE

GOTO step 4

ENDIF

3. IF the value of A>that of C THEN

PRINT "The maximum value is that of A"

GOTO step 5

ELSE

GOTO step 4

ENDIF

4. IF the value of B>that of C THEN

PRINT "The maximum value is that of B"

GOTO step 5

ELSE

PRINT "The maximum value is that of C"

GOTO step 5

ENDIF

5. STOP processing

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

10y ago

begin,

numeric: num 1, num 2, num 3.

accept: num 1, num 2, num 3.

case 1,

if, num 1 > num 2 and num 1 > num 3

display num 1 is greater.

break.

case 2,

if, num 2 >num 3 and num2 > num 1

display num 2 is greater.

break

els,,

num 3 is greater.

end.

you can also have the complete code here http://techtutorz.blogspot.in/2014/04/code-to-find-greatest-number-from-user.html

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

num1% = 0

num2% = 0

num3% = 0

highestNum% = 0

CLS

PRINT "PROGRAM: Find the highest number"

PRINT

INPUT "Enter the first number: ", num1%

highestNum% = num1%

INPUT "Enter the second number: ", num2%

IF num2% > highestNum% THEN highestNum% = num2%

INPUT "Enter the third number: ", num3%

IF num3% > highestNum% THEN highestNum% = num3%

PRINT

PRINT "The largest number you entered was: "; highestNum%

END

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

The 'c' program to input three numbers and display the maximum number is

#include<stdio.h>

#include<conio.h>

void main()

{;

int a,b,c;

clrscr();

printf("enter the value for a,b & c\n");

scanf("%d%d%d",&a,&b,&c);

if(a>b&&a>c)

printf("\na is the maximum number");

else if(b>a&&b>c)

printf("\nb is the maximum number");

else

printf("\nc is the maximum number");

getch();

}

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

Implement this method in Java, passing in the three numbers taken in through the Scanner class:

public static void showLargest(int a, int b, int c) {

if(a > b && a > c) {

System.out.println(a);

}

else if(b > c) {

System.out.println(b);

}

else {

System.out.println(c);

}

}

This answer is:
User Avatar

User Avatar

Wiki User

7y ago

Algorithm: largest_of_three is:

Input: numeric values a, b and c

Output: largest value of a, b and c

let max be a

if b is greater than max then let max be b

if c is greater than max then let max be c

return max

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

function requestedFunction(a,b,c) { document.write("Largest number:" + Math.max(a,b,c) + "
Sum of numbers:" + (a+b+c)) }

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

if (a>b)

then d=a;

else d=b;

if(c>d)

then d=c;

cout<"d"

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write pseudo code to find the biggest of the three numbers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you write in numbers three thousand three hundred sixty-nine?

How wood you write in numbers three thousand three hundred sixty-nine


Write a cgi application which accepts three numbers from the used and display biggest number using get and post methods?

Find your own answers....sucks mahn


How do you write three thousand in numbers?

3000


How do you write three trillion in numbers?

3,000,000,000,000


How do write three hundred three and two hundredths in numbers?

303.02


How can you write five million eight thousand and twenty three in numbers?

The correct way to write it in numbers is: 5,008,023.


What do you do when you have three modes and they're each two numbers?

If you have 3 modes, write down the three as your answer. If the mode has two numbers, just write one of the numbers down.Repeat on the other two modes.


How do you write six hundred and three in numbers?

603


How do you write three thousand and 3 in numbers?

3001


How do you write thirteen and three hundredths in numbers?

13.03


Write six and three hundredths in numbers?

6.03


How do you write three hundred million in numbers?

300,000,000