answersLogoWhite

0

yes

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

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

program to find maximum of two numbers using pointers


To find biggest of four numbers using if else loop?

largest number a,b,c,d


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;


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 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+!!! *************************************************______________________


Find the biggest number vb.net?

To find the biggest number in a list using VB.NET, you can use the Max method from the System.Linq namespace. Here's a simple example: Dim numbers As Integer() = {1, 5, 3, 9, 2} Dim maxNumber As Integer = numbers.Max() Console.WriteLine("The biggest number is: " & maxNumber) This code initializes an array of integers, finds the maximum value using Max(), and prints the result.


How do you simplify Ratios?

Find the biggest common factor and divide it by both numbers


What do you do to find the range of numbers?

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


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


How do you write a c program to find largest of 3 numbers using pointers?

Find the largest of two, then find the largest of that value and the third value. int* max (int* a, int* b) { return (a*) > (b*) ? a : b; } int* max_of_three (int* a, int* b, int* c) { return max (max (a, b), c); }


How do you find the range in group of numbers?

Take the biggest number and subtract it by the smallest number