answersLogoWhite

0

either you use lips gloss or some type of sticky stuff to make it all stay on.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do they make hundred and thousands?

they grab hundreds of coloured balls and them thousands of coloured balls and put them in a container and shake the up. that is how u make hundreds and thousands.


Which is correct - 'Hundreds of thousands of people' or 'hundreds and thousands of people?

Thousands


How much is hundreds of thousands?

It is simply an unspecified number of hundreds of thousands!


What is smaller hundreds or thousands?

hundreds


How much thousands in 60 hundreds?

Sixty hundreds can be converted to thousands by dividing by 10, since 1 thousand equals 10 hundreds. Therefore, 60 hundreds is equal to 6 thousands.


How many thousands equal 50 hundreds?

How many thousands equal 50 hundreds?


How many millions in 60 hundreds thousands?

To convert hundreds of thousands to millions, you divide by 10. Since 60 hundreds of thousands is equivalent to 60 x 100,000, that equals 6,000,000. Therefore, 60 hundreds of thousands is 6 million.


What is hundreds of 700000?

7 hundreds thousands


Does thousands mean hundreds of thousands?

Obviously not!!


What number has 8 ten thousands no thousands 3 fewer hundreds than ten thousands 5 more tens than thousands and 2 more ones than hundreds?

Oh, dude, let me break it down for you. So, we've got 8 ten thousands (80,000), no thousands, 3 fewer hundreds than ten thousands (800 - 3 = 797), 5 more tens than thousands (70 + 5 = 75), and 2 more ones than hundreds (7 + 2 = 9). Put it all together, and you get the number 80,797. Easy peasy!


How many hundred thousens are in 7000 hundreds?

To find out how many hundred thousands are in 7,000 hundreds, first convert hundreds to thousands. Since 1 hundred is 0.1 thousand, 7,000 hundreds is equal to 700 thousands. There are 10 hundred thousands in 700 thousands, so the answer is 10.


You are a four digit number your ones is twice your tens your hundreds is five less than your ones your thousands place is the sum of your tens and hundreds what number are you?

There is no four digit number where the ones is twice the tens, the hundreds is five less than the ones, and the thousands is the sum of the tens and hundreds. int ones, tens, hundreds, thousands; for (thousands=1; thousands<10; thousands++) { /**/ for (hundreds=0; hundreds<10; hundreds++) { /**/ /**/ for (tens=0; tens<10; tens++) { /**/ /**/ /**/ for (ones=0; ones<10; ones++) { /**/ /**/ /**/ /**/ if (ones != 2 * tens) break; /**/ /**/ /**/ /**/ if (hundreds != ones - 5) break; /**/ /**/ /**/ /**/ if (thousands != tens + hundreds) break; /**/ /**/ /**/ /**/ printf ("dd\n", thousands, hundreds, tens, ones); /**/ /**/ /**/ } /**/ /**/ } /**/ } }