answersLogoWhite

0


Best Answer

991

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the sum of the largest and the smallest factor of 990?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the sum of the largest and smallest prime factors of 990?

13


What is the smallest prime number that is a factor of the sum of 32009 and 52009?

The smallest prime number that is a factor of the sum of 32009 and 52009 is: 2


What is the sum of the smallest and largest prime numbers within 10?

The sum of the smallest and largest prime numbers within 10 is 7.


What is the sum of smallest and largest 5 digit whole number?

The smallest 5 digit integer is -99999. The largest 5 digit integer is 99999. The sum is therefore 0.


What is the sum of the smallest and largest 2 digits even numbers?

108


What is the sum of the smallest and largest prime numbers within 100?

The largest prime is 97 and the smallest is 2 (1 is not considered part of the prime number set). So the sum is 97 + 2 = 99


What is the sum and the difference of the smallest and largest two digit count numbers?

Sum = 109 Difference = 89


What is the sum of the smallest and largest multiple of 8 up to 60?

Assuming that you mean the smallest POSITIVE multiple, the answer is 64.


What is the sum of the smallest prime and the largest prime less than 10?

9


What is the sum of the smallest and largest prime number between twenty and thirty?

52


What is the sum of smallest and largest six digit number?

100000 + 999999 = 1099999


Write a program that will find the smallest largest and average values in a collection of N numbers Get the value of N before scanning each value in the collection of N numbers?

#include #include #include int main(int argc, char *argv[]){int n, smallest, largest, sum, temp;if(argc < 2){printf("Syntax: foo val1[val2 [val3 [...]]]\n");exit(1);}smallest = largest = sum = atoi(argv[1]);for(n = 2; n < argc; n++){temp = atoi(argv[n]);if(temp < smallest) smallest = temp;if(temp > largest) largest = temp;sum += temp;}printf("Smallest: %i\nLargest: %i\nAverage: %i\n", smallest, largest, sum / (argc - 1));return 0;}