answersLogoWhite

0

How do you find large and small value from 10 numbers?

Updated: 8/18/2019
User Avatar

Wiki User

14y ago

Best Answer

its easy.. just compare all the numbers you will find the largets and the smallest one.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you find large and small value from 10 numbers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you find the median with an even set of numbers?

put then in order from smallest to largest (or large to small) and find the number directly in the middle


How do you divide small numbers by large ones for example 7divided by 11?

0.6364


Where can you find scientific notation being used?

You can find scientific notation being used wherever numbers are very large or very small.


Find two consecutive numbers with a product of 4160?

Find two consecutive numbers with the value of 4160


How can you scientific notation to solve real world problems?

Scientific notation is useful for very large or very small numbers. If you use such numbers in your "real world", then scientific notation will be very useful. This may be the case, for example, when you work in science or engineering. Otherwise, if you don't work in an area that uses such large or small numbers, you probably won't find much use for them.


How do you find mean value of numbers?

add them all together and divide them by the number of numbers you have


How do you find the value of World War 1 postcards?

I have a large collection of WW1 postcards from France. How do I find their value?


How do you find range in decimal?

The range is the largest value minus the smallest value from a set of numbers.


What a java program to find largest and smallest value store in the array?

Implement these methods: public static int smallest(int[] arr) { int small = arr[0]; for(int i = 1; i < arr.size(); i++) if(arr[i] < small) small = arr[i]; return small; } public static int largest(int[] arr) { int large = arr[0]; for(int i = 1; i < arr.size(); i++) if(arr[i] > large) large = arr[i]; return large; }


How do you find the value of x when you have three other numbers?

add the three numbers the subtract 180 from your sum


What is the value of 2000 to 2013 nickels?

Any US nickel minted since the 1960s is pretty much only worth face value. Even the 2004-2005 Lewis and Clark Bicentennial nickels were minted in such large numbers that any you find in change have no added value.


Write a program to input 10 number array and find smallest and largest number?

#include<stdio.h> void main() { int a[10],n,i,large,small; printf("enter the value of n\n"); scanf("%d",&n); printf("enter the elements\n"); for(i=0;i<n;i++) scanf("%d",&a[i]); large=a[0]; small=a[0]; for(i=1;i<n;i++) { if(a[i]>large) large=a[i]; if(a[i]<small); small=a[i];} printf("largest element in the array id %d\n",large); printf("smallest element in the array is %d\n",small); }