answersLogoWhite

0

1+2+3+4+5+6+7+(8x9)=100

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Using numbers 1 through 9 to equal 1000?

291+678+35-4=1000


What will be the program to arrange numbers stored in array in ascending order using pointers?

sorry


How many 4 digit numbers can you arrange using numbers 1 2 and 4 while repeating some of the numbers?

1124 1224 1244


How can you use each of the numbers 1 through 6 so that the sum of the numbers along the side is the same?

To ensure that the sum of the numbers along the sides is the same using each of the numbers 1 through 6, you can arrange them in a way that each side of a shape (like a square) totals to the same value. For example, if you place 1 and 6 on one side, 2 and 5 on another, and 3 and 4 on the remaining sides, you can achieve equal sums. Specifically, by pairing the numbers strategically, you can equalize the sums to 7 for each side.


What is 6.6 equal to?

Using the uniqueness property of numbers, it is equal to 6.6


Using the numbers 7455 you must have it equal 24?

7455 equal 24


How do you draw a flow chart for determining if the two numbers are equal or not?

using OR ().


What is the consecutive whole numbers of 0.5625?

No two consecutive whole numbers equal 0.5625 using the basic operations of arithmetic.


Get the numbers 5 5 3 7 to equal 24 using - only using numbers once?

(5+7)*(5-3)=12*2=24


How many different ways can you arrange the numbers 1 to 5?

The number of ways you can arrange the numbers 1 to 5 is calculated using the concept of permutations. There are 5 numbers to arrange, so the total number of arrangements is 5 factorial, denoted as 5!. Therefore, the number of ways to arrange the numbers 1 to 5 is 5! = 5 x 4 x 3 x 2 x 1 = 120 ways.


What is the smallest number you can make using the digits 1 2 3 4 5 and 6?

123,456 would be the smallest number using all 6 digits. You arrange the numbers from lowest to highest.


Java program to arrange any numbers in ascending order using scanner classes?

To arrange numbers in ascending order using Java, you can utilize the Scanner class to read input from the user and then sort the numbers using an array. Here's a simple example: import java.util.Arrays; import java.util.Scanner; public class AscendingOrder { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("Enter the number of elements: "); int n = scanner.nextInt(); int[] numbers = new int[n]; System.out.println("Enter the numbers:"); for (int i = 0; i < n; i++) { numbers[i] = scanner.nextInt(); } Arrays.sort(numbers); System.out.println("Numbers in ascending order: " + Arrays.toString(numbers)); scanner.close(); } } This program collects a specified number of integers from the user, sorts them using Arrays.sort(), and then displays the sorted list.