answersLogoWhite

0

1: Un,

2: deux,

3: trois,

4: quatre,

5: cinq,

6: six,

7: sept,

8: huit,

9: neuf,

10: dix

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How do you say count to ten in French?

to count to ten is 'compter jusqu'à dix' in French.


Does putting a french word before English numbers count as counting in french?

No, counting in French involves using French numbers consistently. Mixing French words with English numbers does not count as counting in French. To count in French, you need to use the French words for all the numbers in a sequence.


What is the meaning of computer in French?

compter means 'to count' in French.


How do you say you can count to ten in french?

I can count to ten in French: Je peux compter jusqu'à dix en français.


How do you count to 10 in french with English translations?

un - oneduex - twotrois - threequatre - fourcinq - fivesix - sixsept - sevenhuit - eightneuf - ninedix - ten


What are the French numbers?

un, deux, trois, quatre, cinq, six, sept, huit, neuf, dix.DID YOU KNOWthat the french only count up to 60 and then they have to say 60 + 10 ect


When was Count Yourself In created?

Count Yourself In was created on 2006-10-10.


What language can Justin Bieber count to ten?

English, (American)


What does comptez mean?

It means to count in French.


What is the French word for count?

contes or calculer.


Do skips count as a color in Phase 10?

No, skips do not count as a color in Phase 10.


How do you find the nearest palindrome of any number?

int nearPalin(int n){ int temp = n; int count = 0; while(temp>0){ temp /= 10; count++; } if(count%2 == 0){ count = count/2; while(count--) n = n / 10; temp = n; while(n>0){ temp = temp*10 + n%10; n = n/10; } return temp; } else{ count = count/2; while(count--) n = n / 10; temp = n; n = n/10; while(n>0){ temp = temp*10 + n%10; n = n/10; } return temp; } }