answersLogoWhite

0

To find biggest of four numbers using if else loop?

Updated: 8/18/2019
User Avatar

Wiki User

11y ago

Best Answer

largest number a,b,c,d

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: To find biggest of four numbers using if else loop?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you find the biggest of two numbers using single if?

You can only do this if the two numbers won't be equal: if(a > b) return a; else return b;


How do you find the biggest of n numbers using pointers in C?

yes


How do you find a number is odd or even numbers using flowchart?

Get number Find modulo 2 of number If the result is zero, number is even Else number is odd


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


Find the sum of the smallest and biggest two-digit composite numbers?

Smallest will be 10 Biggest will be 99


How do you get numbers from boys?

Try find out if he loves someone else and if he doesn't say to him (in Private!) what's your biggest secret -and when it your time to say yours, say I have a crush on you and go all romantic!


How do you write a c program to find biggest among two numbers using conditional operator?

int max (int a, int b) { return a>b?a:b; }


How do you find the range mean and the meadian?

Answers down there. range: add the numbers all up and divide how many numbers you have. meadian: put all the numbers in order from smallest to biggest, then find the one in the middle. mean: the biggest minus the smallest. HOPE YOU GET AN A+!!! *************************************************______________________


What do you do to find the range of numbers?

you take the biggest number and subtract it by the smallest number.


How do you simplify Ratios?

Find the biggest common factor and divide it by both numbers


How to write a C program to find largest 2 numbers using pointers?

program to find maximum of two numbers using pointers


Find largest of n numbers using shell programming?

arg_cnt=$# arg_list=$* biggest=$1 if [ $arg_cnt -eq 0 ]; then echo "$RF there should be minimum 1 argument" exit 1 fi for each_arg in $arg_list do if [ $each_arg -gt $biggest ]; then biggest=$each_arg fi done echo " Biggest number is : $biggest \n" exit 0