answersLogoWhite

0

I'm not sure if you are limited by purely addition or what the rules are so I have the following answer:

Using only 6 numbers, but any function:

3*5-5+9+1+1 = 21

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

9999555533331111 in this any 6 nos total is 21 what r they?

3*3*3-(5+(5/5)) 9+3+3+5+1(to the power of 1) ...using 6 numbers logic fullfilled ...here in this answer v use the clause of using all given digits


How do you add n numbers by using c plus plus?

If you're reading the numbers sequentially, keep a running total. Alternatively, pass all the numbers to a function using a variable-length argument. Alternatively push the numbers into a vector then sum the vector with the following function: void sum_vector(std::vector<int> a) { int total=0; for(int i=0; i<a.size(); ++i) total+=a[i]; return(total); }


How many 3 digit numbers can you get using the numbers 0 though 9?

Should be 1000. (10x10x10)


What mistake did Mariah make if any Mariah has the formula reversed it should be the total number of sections over the numbers greater than 7. Mariah should have used a 3 in the numerator because ther?

Mariah made a mistake by incorrectly placing the numbers in her formula. Instead of using the total number of sections in the numerator, she should have used the count of numbers greater than 7. This means she should have had 3 in the numerator, as there are three numbers greater than 7 in her data set. As a result, her calculations were based on the wrong values, leading to an incorrect conclusion.


How do you calculate total and average using algorithm?

To calculate the total and average using an algorithm, first, iterate through a collection of numbers and sum them up to get the total. Then, divide the total by the count of numbers in the collection to find the average. The algorithm can be outlined as follows: initialize a total variable to zero, loop through each number to add it to the total, and finally divide the total by the number of elements to get the average. This process can be implemented in various programming languages using loops and basic arithmetic operations.


How do you solve 2 decimal numbers using multiplacation?

Multiply the numbers, count the total number of decimal places in the problem and place that many in your product.


Estimate the total weight of two boxes that weight 9.4 lb and 62.6 lb using rounding and compatible numbers which estimate is closer to the actual total weight why?

Rounding the weights to 10 lb and 60 lb gives an estimated total weight of 70 lb. Using compatible numbers by rounding to 9 lb and 60 lb, the estimated total weight is 69 lb. The estimate using compatible numbers (69 lb) is closer to the actual total weight of 71.6 lb.


What are the allowed total angular momentum quantum numbers of a composite system in which j1 5 and j2 3?

Using the commutation relation will help us compute the allowed total angular momentum quantum numbers of a composite system.


Write a program to aceept 5 numbers from keyboard n print itz total?

#include using std::cin;using std::cout;using std::endl;int main(){int arrSize = 5;double arr[arrSize] = {0.0};cout


How do you write 6th Sept 2011 in 5 letters without using numbers?

Using Roman Numerals: VI/IX/MMXI uses a total of 4 letters.


How do you block numbers using textnow?

#STOP must use all capital letters it should work.


Write a c plus plus program to find product of two numerical numbers?

#include <iostream> using namespace std; int main( ) { int a, b, total; cout << "Enter 2 numbers: "; cin >> a >> b; total = a * b; cout << "The total is " << total << endl; system("pause"); return 0; }