answersLogoWhite

0

Count from 1 to 10 in Latin?

Updated: 9/16/2023
User Avatar

Wiki User

13y ago

Best Answer

1 - unus, una, unum

2 - duo, duae, duo

3 - tres, tres, tria

4 - quattuor

5 - quinque

6 - sex

7 - septem

8 - octo

9 - novem

10 - decem

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Count from 1 to 10 in Latin?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you count backwards from 1 to 10?

you cna you can only count backwards form 10-1


How long does it take to count from 1 to 10 sextillion?

It depends with your speed but it can take you 10^18 light years to count from 1 to 10 sextillion.


How do you write a program in c that will count from 1 to 10 and its square for each count?

int i; for (i=1; i<=10; i++) printf ("%d %d\n", i, i*i);


How do you write 10 times 10 times 10 times 10 times 10 times 10?

Locate 6,1Input "Your Name Please ",Nam$LOCATE 8,1FOR Count=1 to 10Print TAB(5) Count " > ";Nam$Next Count


Different betbeen while dowhileloop?

public class DoWhileLoopDemo {public static void main(String[] args) {int count = 1;System.out.println("Printing Numbers from 1 to 10");do{System.out.println(count++);}while( count


What is 1 1 1 1 1 1 1 1 1 1?

it is 10. First, you need to count how many 1's there are. 1,2,3,4,5,6,7,8,9,10! There are 10.


What are the release dates for Ritmo y sabor - 2001 The Best Latin Music 10 1-10?

Ritmo y sabor - 2001 The Best Latin Music 10 1-10 was released on: USA: 16 December 2001


How do you count from 1-10 in Afrikaans?

1 2 3 4 5 6 7 8 9 10


How many squares are there from 1 to 100?

there are 10 squares if you count 100


What are the ratings and certificates for Count Duckula - 1988 Castle Duckula Open to the Public 1-10?

Count Duckula - 1988 Castle Duckula Open to the Public 1-10 is rated/received certificates of: Australia:G


What is 100000000 in exponential form?

Count the zeroes. 10000000000 = 1 x 10^10 (the ^ means exponent).


What is the maximum number that you can count up to using 10 bits14 bits and count up to a maximum of 511 63?

Using n bits, you can count to 2n - 1. This is for unsigned integers. So 10 bits = 210 - 1 = 1023 14 bits = 214 - 1 = 16383 To count to 511 you need log2(511+1) = log2(512) = 9 bits. To count to 63 you need log2(63+1) = log2(64) = 6 bits.