Word for in great numbers


На основании Вашего запроса эти примеры могут содержать грубую лексику.


На основании Вашего запроса эти примеры могут содержать разговорную лексику.

в большом количестве

в больших количествах

в огромных количествах

в огромном количестве

в великом множестве

в значительном количестве

в немалом количестве

в массовых количествах

в громадных количествах

в очень больших количествах

великое множество


But their presence in great numbers is what appears in test results.



Но их присутствие в большом количестве — это то, что появляется в результатах теста.


They killed themselves in great numbers.


They carry them in great numbers.


Yet here they were, and in great numbers.


But in reality muons arrive at Earth from the Sun in great numbers.


Yet here they were, and in great numbers.


Now, they can be found in great numbers.


Your target market is definitely on social media… and in great numbers.



Ваш целевой рынок определенно находится в социальных сетях… и в большом количестве.


Of course, at night you can see them fly in great numbers in the sky.


You must recite it because it offers protection to those nations who say it daily and in great numbers.



Вы должны молиться на них, потому что это предлагает защиту тем странам, в которых читают их ежедневно и в большом количестве.


The people have come out in great numbers to show their strength and their solidarity.


Gold and silver coins were issued in great numbers which is a general indicative of the health of the economy.



Золотые и серебряные монеты были выпущены в большом количестве, что является общим показателем состояния здоровья экономики.


Some exist in great numbers when conditions are good, and can migrate to make the most of the available food.



Некоторые существуют в большом количестве, когда условия хороши и могут мигрировать, чтобы максимально использовать доступную пищу.


At the same time medals are given in great numbers and with different patterns, not relating to sport.



Вместе с тем они предоставляются в большом количестве и с различными узорами, не имеющими отношения к спорту.


These adult stem cells are found in great numbers in the skin, the biggest organ of the human organism.



Эти взрослые стволовые клетки обнаружены в большом количестве в коже, самом большой органе человеческого организма.


These were produced in great numbers.


They flocked to him in great numbers, and they flooded him with written inquiries.



Они стекались к нему в большом количестве, и они наводняли его письменными вопросами.


However, they shine very brightly in the infrared, and appeared in great numbers.


Job vacancies are out there, in great numbers in certain fields.


Sea cucumbers can be found in great numbers on the deep sea-floor, where they often make up the majority of the animal biomass.



Морские огурцы в большом количестве встречаются на глубине моря, где они часто составляют большую часть биомассы животных.

Ничего не найдено для этого значения.

Результатов: 386. Точных совпадений: 386. Затраченное время: 127 мс

Documents

Корпоративные решения

Спряжение

Синонимы

Корректор

Справка и о нас

Индекс слова: 1-300, 301-600, 601-900

Индекс выражения: 1-400, 401-800, 801-1200

Индекс фразы: 1-400, 401-800, 801-1200

‘IN GREAT NUMBERS’ is a 14 letter
Phrase
starting with I and ending with S

Crossword answers for IN GREAT NUMBERS

Clue Answer

IN GREAT NUMBERS
(6)

GALORE

Synonyms for GALORE

2 letter words

3 letter words

4 letter words

Thanks for visiting The Crossword Solver «In great numbers».

We’ve listed any clues from our database that match your search for «In great numbers». There will also be a
list of synonyms for your answer.
The answers have been arranged depending on the number of characters so that they’re easy to
find.

If a particular answer is generating a lot of interest on the site today, it may be highlighted in
orange.

If your word «In great numbers» has any anagrams, you can find them with our anagram solver or at this
site.

We hope that you find the site useful.

Regards, The Crossword Solver Team

More clues you might be interested in

  1. letters on a crucifix
  2. small meal
  3. block of wood
  4. merchant
  5. mature insect
  6. wicker willow
  7. billion years
  8. behave badly
  9. storm cloud
  10. focus of interest
  11. greek love god
  12. male voice
  13. hostess
  14. hordes
  15. abu
  16. speaks in a joking way
  17. shakespearean «soon»
  18. equivocal
  19. before now
  20. wall installation
  21. concave ceiling
  22. designer klein
  23. strict reasoning
  24. benefactor
  25. in a few words
  26. begin to grow
  27. sign of the zodiac
  28. pancakes sometimes served with caviar
  29. percolate
  30. pronounce sentence

Цикл for в Python – это итеративная функция. Если у вас есть объект последовательности, например список, вы можете использовать цикл for для перебора элементов, содержащихся в списке.

Функциональность цикла for не сильно отличается от того, что вы видите во многих других языках программирования.

Содержание

  1. Базовый синтаксис
  2. Как вывести отдельные буквы строки?
  3. Использование цикла for для перебора списка или кортежа
  4. Вложенный цикл
  5. Использование с функцией range()
  6. Оператор break
  7. Оператор continue
  8. С (необязательным) блоком else

Базовый синтаксис

Мы можем использовать цикл for для перебора списка, кортежа или строк. Синтаксис:

for itarator_variable in sequence_name:
	Statements
	. . .
	Statements

Как вывести отдельные буквы строки?

Строка Python – это последовательность символов. Мы можем использовать цикл for для перебора символов и их печати.

word="anaconda"
for letter in word:
	print (letter)

Вывод:

a
n
a
c
o
n
d
a

Список и кортеж – повторяемые объекты. Мы можем использовать цикл для перебора их элементов.

words= ["Apple", "Banana", "Car", "Dolphin" ]
for word in words:
	print (word)

Вывод:

Apple
Banana
Car
Dolphin

Давайте посмотрим на пример, чтобы найти сумму чисел в кортеже:

nums = (1, 2, 3, 4)

sum_nums = 0

for num in nums:
    sum_nums = sum_nums + num

print(f'Sum of numbers is {sum_nums}')

# Output
# Sum of numbers is 10

Вложенный цикл

Когда у нас есть цикл for внутри другого цикла for, он называется вложенным циклом for. В следующем коде показаны вложенные циклы:

words= ["Apple", "Banana", "Car", "Dolphin" ]
for word in words:
        #This loop is fetching word from the list
        print ("The following lines will print each letters of "+word)
        for letter in word:
                #This loop is fetching letter for the word
                print (letter)
        print("") #This print is used to print a blank line

Вывод

Пример вложенного цикла

Использование с функцией range()

Python range() – одна из встроенных функций. Она используется с циклом for для выполнения блока кода определенное количество раз.

for x in range(3):
    print("Printing:", x)
	
# Output

# Printing: 0
# Printing: 1
# Printing: 2

Мы также можем указать параметры запуска, остановки и шага для функции диапазона.

for n in range(1, 10, 3):
    print("Printing with step:", n)
	
# Output

# Printing with step: 1
# Printing with step: 4
# Printing with step: 7

Оператор break

Оператор break используется для преждевременного выхода из цикла for. Он используется для прерывания цикла при выполнении определенного условия.

Допустим, у нас есть список чисел, и мы хотим проверить, присутствует ли число. Мы можем перебрать список чисел и, если число найдено, выйти из цикла, потому что нам не нужно продолжать перебирать оставшиеся элементы.

В этом случае мы будем использовать условие if else.

nums = [1, 2, 3, 4, 5, 6]

n = 2

found = False
for num in nums:
    if n == num:
        found = True
        break

print(f'List contains {n}: {found}')

# Output
# List contains 2: True

Оператор continue

Мы можем использовать операторы continue внутри цикла, чтобы пропустить выполнение тела цикла for для определенного условия.

Допустим, у нас есть список чисел, и мы хотим вывести сумму положительных чисел. Мы можем использовать операторы continue, чтобы пропустить цикл для отрицательных чисел.

nums = [1, 2, -3, 4, -5, 6]

sum_positives = 0

for num in nums:
    if num < 0:
        continue
    sum_positives += num

print(f'Sum of Positive Numbers: {sum_positives}')

С (необязательным) блоком else

Блок else выполняется только в том случае, если цикл не завершается оператором break.

Допустим, у нас есть функция для вывода суммы чисел, когда все числа четные. Мы можем использовать оператор break, чтобы завершить цикл for, если присутствует нечетное число. Мы можем вывести сумму в части else, чтобы она выводилась, когда цикл выполняется нормально.

def print_sum_even_nums(even_nums):
    total = 0

    for x in even_nums:
        if x % 2 != 0:
            break

        total += x
    else:
        print("For loop executed normally")
        print(f'Sum of numbers {total}')


# this will print the sum
print_sum_even_nums([2, 4, 6, 8])

# this won't print the sum because of an odd number in the sequence
print_sum_even_nums([2, 4, 5, 8])

# Output

# For loop executed normally
# Sum of numbers 20

( 3 оценки, среднее 5 из 5 )

context icon

context icon

context icon

By fencing the rivers they caught fish in great numbers, drying the surplus for winter use.

context icon

Today, at the Permanent Forum, indigenous women participate in great numbers, have their own caucus and have a strong voice.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

context icon

Сегодня в работе Постоянного форума принимает участие большое число принадлежащих к коренным народам женщин, которые проводят свои собственные собрания и заставляют прислушиваться к своему мнению.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

Under its programmes of assistance to returnees, UNHCR is rehabilitating 8 district hospitals and

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

context icon

В соответствии со своими программами помощи возвращенцам УВКБ занимается восстановлением восьми районных

больниц и 42 медицинских центров в районах, где имеется большое число возвращенцев.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

The works management didn’t feel sure of success of it because the 1200 cc model was

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

context icon

Однако руководство завода не было уверено

в

успехе этого мероприятия, поскольку производившийся уже 1200-

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

They have been found in great numbers and along with stone-cist burials,

megaliths and are the main examples of mortuary architecture

in

the Mumun.

context icon

являются главными примерами погребальной архитектуры эпохи Мумун.

The nature of MOTAPM

is that they need not be used in great numbers

in

order to cause severe damage and disruption to normal activities.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

context icon

Ввиду специфики НППМ

для нанесения серьезного ущерба и срыва нормальной деятельности нет необходимости применять их в больших количествах.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

Such documents exist in great numbers and contain very valuable information

in

terms

of regular reporting on and assessment of the marine environment.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

context icon

Эти документы имеются в большом количестве и содержат информацию, весьма актуальную с

точки зрения освещения и регулярной оценки состояния морской среды.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

The height of sōjutsu’s popularity was immediately after the Mongol invasions of the 13th century,

context icon

Пик популярности содзюцу было сразу после монгольского нашествия 13- го века,

Tuvan“Charash-Tash” is a product of degradation(thawing) of glaciers,

context icon

Тувинский« чараш- таш» является продуктом деградации( таяния)

ледников и

в

настоящее время в большом количестве присутствует

в

размываемой краевой ледниковой морене.

Increasingly, situations of war and conflict occur not between or among countries, but within them.

These situations have created enormous destruction and resulted in great numbers of refugees and displaced persons.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

context icon

Войны и конфликты все чаще вспыхивают не между странами, а в пределах стран,

приводя к огромным разрушениям и появлению большого числа беженцев и перемещенных лиц.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

I would be most grateful if you come in great numbers so that we can create a powerful sanga(community) of committed chanters.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

context icon

Я был бы чрезвычайно благодарен, если бы их посещало большое количество человек, чтобы мы могли создать сильную сангу( сообщество) преданных, повторяющих святое имя со всей серьезностью.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

They may come together in great numbers during their annual migrations; schools of over a hundred juveniles under 1.5 m(4.9

ft) long have been observed off the eastern Cape of South Africa, and schools thousands strong have been reported off California.

context icon

Во время ежегодной миграции они могут собираться вместе в большом количестве; у восточного мыса Южной Африке попадались стаи,

состоящие из более ста молодых акул размером 1, 5 м; у берегов Калифорнии зарегистрировано появление стай из тысяч особей.

The Committee notes the State party’s submission that that numerous

Sikh militants are back

in

India, that Sikhs live in great numbers

in

different states

and therefore the complainants have the option to relocate to another Indian state from their state of origin.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

context icon

Комитет принимает к сведению заявление государства- участника о том,

что многие сикхские боевики вернулись в Индию, что большое число сикхов живут в различных штатах

и что поэтому у заявителей есть возможность переехать из штата их происхождения в другой индийский штат.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

It is supposed by the natives to have been caused by drinking water which has been impregnated with ashes;

and horses have also died, in great numbers, from a similar complaint.-Lt.

Philips, ordered by Sir Stamford Raffles to go to Sumbawa.

context icon

Местные жители полагают, что она была вызвана питьевой водой, перемешанной с пеплом;

лошади тоже умирают в большом количестве с аналогичными симптомами.- Лейтенант Филипс, по приказу Стэмфорда Раффлза отправившийся

на Сумбаву Вся растительность на острове Сумбава была уничтожена.

The red-whiskered bulbuls and

red-vented bulbuls have been captured for the pet trade in great numbers and, has been widely introduced to tropical and subtropical areas,

for example southern Florida, Fiji, Australia and Hawaii.

context icon

Pycnonotus jocosus и Pycnonotus cafer в большом количестве отлавливались для торговли животными, и теперь эти виды стали шире распространенными видами, сейчас встречаются

в

тропических и субтропических районах,

на юге штата Флорида, Индии, Индонезии, Австралии и Гавайи.

To avoid or resolve such conflicts, bilateral treaties for the avoidance of double taxation of income and

capital have been concluded in great numbers between countries from all regions and at different levels of development.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

context icon

Для предупреждения или урегулирования подобных конфликтных ситуаций между странами всех регионов и

на различных уровнях развития было заключено большое число двусторонних договоров об избежании двойного налогообложения доходов

и капитала.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

Many of Hogarth’s earlier works had been reproduced in great numbers without his authority or any payment of royalties,

and he was keen to protect his artistic property, so had encouraged his friends

in

Parliament to pass a law to protect the rights of engravers.

context icon

Многие из ранних работ Хогарта печатались в больших количествах без его контроля или выплаты авторских вознаграждений,

поэтому он ради соблюдения своих интересов призвал друзей из Парламента Великобритании принять закон о защите прав граверов.

When crews can land in great numbers, they will bring their technology to dematerialize all nuclear waste

and to eliminate all radioactive pollutants

in

air, water and soil, and they will work with you to purify and rejuvenate your planet.

context icon

Когда экипажи смогут приземлиться в большом количестве, они принесут свои технологии, чтобы дематериализовать все ядерные отходы

и устранить все радиоактивные загрязнения воздуха, воды и почвы, и они будут работать с вами, чтобы очистить и обновить вашу планету.

Individual training requirements were much lower than those for archers or knights, and the switch from heavily armoured knight to footsoldier made possible the expansion

in

the size of armies from the late 15th century onwards as infantry could be trained more quickly and

context icon

Переход от тяжело вооруженного рыцаря к пешему солдату позволило расширить размеры армий

в

конце XV века, так как пехота могла обучаться быстрее и

These kind creatures only visit this part of Mexico during a couple of months a year but

when they do they come in great numbers making it one of the most famous whale

shark get togethers

in

the world.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

context icon

Эти добрые существа приплывают

в

эту часть Мексики всего на несколько месяцев

в

году, но когда это происходит,

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

It is logical to expect that by now the thousands of spacecraft

in

your skies would be visible to all;

crews would have landed in great numbers and been officially welcomed;

and turmoil, warring and other violence would have decreased significantly.

context icon

Логично ожидать, что сейчас тысячи космических аппаратов

в

вашем небе были бы видны для всех;

и беспорядки, непримиримость и другие формы насилия значительно бы сократились.

Even though many of the fall shows and meetings were not full-blown trade shows with lots of Big IRON on the floor,

various pieces of precision ag technology were present in great numbers.

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

context icon

Даже несмотря на то, что некоторые события не были полномасштабными выставками с

большим

количеством« железа» на полу,

icon https://st.tr-ex.me/img/material-icons/svg/open_in_new/baseline.svg

So they established a decree to make proclamation throughout all Israel, from Beersheba even to Dan, that they should come to keep the Passover to Yahweh, the God of Israel, at Jerusalem:

context icon

Итак, было решено объявить по всему Израилю, от Вирса́вии до Да́на, чтобы народ шел

в

Иерусалим праздновать пасху, посвященную Иегове, Богу Израиля,

потому что народ не собирался на этот праздник в большом количестве, как было предписано.

Unlike English, German, and other foreign tourists, many of whom canceled their vacations

in

Greece due to protests and economical crisis

in

the summer of 2010, Serbian tourists broke the record,

context icon

В

отличие от английских, немецких и других иностранных туристов, многие из которых отменили свои каникулы

в

Греции по причине экономического кризиса и протестов летом 2010 года, сербские туристы превысили рекорд,

GT Juniors sold in great numbers to people who wanted a sporting,

stylish car that handled well, but either did not require the maximum

in

engine power, or could not afford the taxation on larger engine capacities

in

some markets- most notably, Alfa Romeo’s home Italian market.

context icon

GT Juniors в больших количествах продавались клиентам, которые хотели иметь спортивный и

стильный автомобиль с хорошей управляемостью, но либо не нуждались

в

двигателях высокой мощности, либо не готовы были к налоговому бремени на двигатели

большого

объема на некоторых рынках- особенно на домашнем для Alfa Romeo итальянском.

Most likely, first, the image was drawn from completely real prototypes,

the remains of which are still found in great numbers

in

the deserts of Central Asia,

and second, in the traditional culture of nomads, who have always been neighbors of agricultural nations of East Asia, the image of serpent-Dragon was well known and frequently depicted on flags as a symbol of their totemic ancestors and protectors.

context icon

Скорее всего, во-первых, его образ срисовывали с вполне реальных прототипов,

во-вторых,

в

традиционной культуре номадов, издревле соседствующих с земледельческими народами Восточной Азии, облик Змея- Дракона был хорошо известен и часто изображался на знаменах, символизируя их тотемных предков и покровителей.

  • #1

Is this sentence right?
«People all over the world are starving greater in numbers.»
If it is correct, does it need «greater»? can I omit it?
If I keep it, how does it help the sentence?
Thanks.

    • #2

    i’m not quite sure what you are exactly trying to say but i think it would be «people all over the world are starving in great numbers»

    Lalajuela

    Senior Member

    Spanish- Costa Rica, English-USA


    • #3

    I believe it should say, «in greater numbers» NOT «greater in numbers.» As it is, it means they are starving better as a multitude, whereas I imagine the intent is to say that the number of people that are starving is increasing. Does that make sense? I hope so!

    Joelline


    • #4

    I agree with Yiis. The standard expression is «in great numbers.» You could also use «greater» if you mean that people are starving in greater numbers today than 20 years ago.

    • #5

    Thank you very much.
    I understand but I have the last question:
    Does «number» need «s»? Is it necessary for «number» to have «s»?
    Thanks.

    Joelline


    • #6

    Thank you very much.
    I understand but I have the last question:
    Does «number» need «s»? Is it necessary for «number» to have «s»? Yes.
    Thanks.

    • #7

    Joelline.
    It is not expected to have this answer.
    Is it unchangeable? Is it always «in great numbers.»
    Joelline, can you give me another word equivalent to «in great numbers»

    Joelline


    • #8

    Hi Mimi,

    The exact expression is «in great numbers,» so the plural «numbers» is required. However, there are alternative ways to say this:

    «A great number of people all over the world are starving.»
    «Millions of people all over the world…»
    «Vast numbers of people all over the world…»
    «Many people all over the world….»

    Finally, intead of «It is not expected to have this answer», it would be more common to say:
    I didn’t expect this answer.
    This/Your answer was unexpected.

    • #9

    Thank you, Joelline, for your explanation, your kind help and all you have done for me.

    Asked
    7 years, 11 months ago

    Viewed
    4k times

    For this challenge I need to find the word with the greatest numbers of repeated letters. For example, if I enter Hello world! the output should be Hello as it contains 2 characters of l, or No words and it should be -1.
    I broke down the problem into:

    1) Broke a sentence into the array of words

    2) Went through each word in a loop

    3) Went through each charcater in a loop

    I’m stuck in how I should return if a word contains more letters than any other.

    public static void main(String[] args) {
        Scanner kbd = new Scanner(System.in);
        System.out.println("Enter any sentence or word combination: ");
        String myString = kbd.nextLine();
        String result = "";
        int count = 0;
    
        String[] words = myString.split("\s+");
        for(int i = 0; i < words.length; i++) {
            for(int j = 0; j < words[i].length(); j++) {
                for(int k = 1; k < words[i].length(); k++) {
                    char temp = words[i].charAt(k);
                    if(temp == words[i].charAt(k-1)) {
                        count++;
                    }
    
                }
    
            }
        }
    }
    

    Willem Van Onsem's user avatar

    asked May 14, 2015 at 20:37

    5

    You almost did it and I suppose you’re looking into something like this:

    static int mostFreqCharCount(final String word) {
        final int chars[] = new int[256];
    
        int max = 0;
        for (final char c : word.toCharArray()) {
            chars[c]++;
            if (chars[c] > chars[max]) // find most repetitive symbol in word
                max = c;
        }
        return chars[max];
    }
    
    public static void main(final String[] args) {
        System.out.println("Enter any sentence or word combination: ");
    
        final Scanner kbd = new Scanner(System.in);
        final String myString = kbd.nextLine();
        kbd.close();
    
        int maxC = 0;
        String result = "";
    
        final String[] words = myString.split("\s+");
        for (final String word : words) {
            final int c = mostFreqCharCount(word);
            if (c > maxC) {
                maxC = c;
                result = word;
            }
        }
    
        if (maxC > 1) // any word has at least 1 symbol, so we should return only 2+
            System.out.println(result);
    }
    

    the main idea — calculate number of most frequent symbol for each word and store only maximal one in variables maxC and result

    answered May 14, 2015 at 20:49

    Iłya Bursov's user avatar

    Iłya BursovIłya Bursov

    23k4 gold badges33 silver badges57 bronze badges

    2

    You’ll want to create an array of length = words.length, and store the highest value for each word in its relative index:

    int counts[] = new int[words.length];
    for(int i = 0; i < words.length; i++) {
        for(int j = 0; j < words[i].length(); j++){
                count = 0
                for(int k = k+1; k < words[i].length(); k++){
                    if(words[i].charAt(j) == words[i].charAt(k)){
                        count++;
                    }
                if(counts[i] < count)
                      counts[i] = count;
          }
    
    }
    

    Then just scan through the array for the highest value, n, and return words[n]

    answered May 14, 2015 at 20:54

    GreySage's user avatar

    GreySageGreySage

    1,14719 silver badges39 bronze badges

    If you just need the ONE word with the greatest count, you only need three variables, one for currentBestWord, one for currentLargestCount, and one to keep the count of characters in a word.

    int currentLargestCount=0;
    String currentBestWord="";
    HashMap<String,Integer> characterCount=new HashMap<String,Integer>();
    String[] words=myString.split("\s+");
    for(int i=0;i<words.length;i++){
        String w=words[i];
        characterCount=new HashMap<String,Integer>();
        for(int j=0;j<w.length();j++){
            String character=w.charAt(j).toString();
            if(characterCount.containsKey(character)){
                characterCount.put(character,characterCount.get(character)+1);
            }else{
                 characterCount.put(character,1);
            }
        }
        // Now get the largest count of this word
        Iterator ir=characterCount.ValueSet().iterator();
        int thiscount=0;
        while(ir.hasNext()){
             int thischaractercount=ir.next();
             if(thiscount<thischaractercount) thiscount=thischaractercount;
        }
        if(thiscount>currentLargestCount){
            currentLargestCount=thiscount;
            currentBestWord=w;
        }
    }
    

    answered May 14, 2015 at 20:56

    Evilsanta's user avatar

    EvilsantaEvilsanta

    1,02211 silver badges18 bronze badges

    1

    This is the ultimate guide to saying (or reading out) numbers in English. Also check out Maths Vocabulary in English: Do You Know the Basics?

    Today, you’re going to learn how to say different types of numbers in English.

    We’ll look at how to say:

    • big numbers
    • prices
    • the time
    • decimals
    • ordinal numbers
    • fractions
    • the temperature
    • space
    • speed
    • years

    102 Little Drawings eBook

    First, you try!

    OK. Take a look at these sentences and see if you can say the numbers correctly.

    Don’t move on to the next part until you’ve tried to say them. It’s like a test — but a fun one!

    • There were about 120,000 people at the gig. It was massive!
    • We produce 342,876,288 cans of elephant food every year.
    • I can’t leave until I’ve beaten Kat’s score of 12,073. I’m going to be here all night.

    Was I right?

    Well, let’s see if you were right.

    120,000 = “one hundred and twenty thousand” or “a hundred and twenty thousand”
    342,876,288 = “three hundred and forty-two million, eight hundred and seventy-six thousand, two hundred and eighty-eight” (phew!)
    12,073 = “twelve thousand and seventy-three”

    What are the rules here?

    OK. There are four things you should think about here.

    1. Break big numbers up into pieces!

    See the commas between the numbers? (They’re full stops in most languages but not in English — because English likes to be different!)

    Those commas show you how to break the number up. So just say the numbers between the commas and add “billion,” “million,” “thousand,” etc. afterwards:

    Break large numbers into pieces

    Note: To avoid confusion between commas (,) and full stops (.) in big numbers, there’s an international standard. What’s the solution? Just uses spaces.

    324,678,129 → 324 678 129

    2. Don’t make “one hundred,” “one thousand,” etc., plural!

    Just remember, when we’re saying a big number, the numbers are not pluralised:

    So don’t say:
    4,000 — “four thousands”

    Say:
    4,000 — “four thousand”

    3. Say “and” after “hundred” (if you prefer British English)

    Did you notice the “and”?

    Basically, every time we say “hundred,” we say “and” next.

    Large numbers: add 'and' after 'hundred'

    Remember — this doesn’t work if there are just zeros after the hundred:

    Large numbers: don't add 'and' before zeros

    But it’s worth remembering that most English speakers don’t add “and” — it’s usually just the Brits. So you can ignore this rule if you like.

    4. “One hundred” or “a hundred” — it doesn’t really matter

    With the following numbers, you have freedom of choice:

    100 = “one hundred” or “a hundred”
    1,000 = “one thousand” or “a thousand”
    1,000,000 =  “one million” or   “a million”

    Yay, freedom!

    Saying prices in English

    First, you try!

    OK. Look at these sentences. How do you say them?

    • That one only costs $1.89! Let’s get it!
    • They really wanted to sell the house for £200,000, but in the end, they had to accept half that.
    • Wow — €0.99? That’s cheap!

    Was I right?

    OK. Let’s check:

    $1.89 = “one dollar eighty-nine (cents)” or “one dollar and eighty-nine cents” or “one eighty-nine”
    £200,000 = “two hundred thousand pounds” or “two hundred grand” or “two hundred K”
    €0.99 = “ninety-nine cents”

    What are the rules here?

    There are two main rules at work here:

    1. Word order of prices

    In the first example ($1.89), did you notice how we said the first number first (1), then the currency ($), then the other number (89)?

    That’s the order we use when we talk about prices:

    How to say prices in English

    Remember, we don’t have to say “cents” (or “pence” or “Kopek,” etc.). It’s clear from the context.

    In fact, very often we don’t even say the currency. So you could just say:

    That'll be five ninety-nine, please.

    2. Using “grand” or “K” instead of “thousand”

    If you’re talking about big numbers all the time, it doesn’t make sense saying a long word like “thousand” again and again.

    Fortunately, we can shorten “thousand” to either “grand” or “K.”

    Grand, K and Thousand

    But remember, it only works when the number is exactly on the thousands:

    Don't say 'grand' or 'K' if the number has hundreds

    Saying the time correctly

    First, you try!

    OK — can you say these times correctly?

    Be careful here. I’ve written these all in 24-hour time, but we don’t say all of them in 24-hour time. Think about the context!

    • The film about sushi starts at 19:00. Don’t be late!
    • The plane leaves at 17:43. Then the adventure begins!
    • The next train leaving platform 4 will depart at 15:00.
    • Shall we meet at around 18:30?
    • You’re late! It’s 08:03.

    Was I right?

    Let’s see!

    19:00 (in this situation) = “seven” or “seven p.m.” or maybe “seven o’clock”
    17:43 (in this situation) = “seventeen forty-three”
    15:00 (in this situation) = “fifteen hundred hours”
    18:30 (in this situation) = “six thirty” or “half-past six” or “half six”
    08:03 = “eight oh-three” or “three (minutes) past eight”

    What are the rules here?

    Most of the rules here are a bit different because they depend on context.

    1. When speaking informally, don’t use 24-hour time

    So when we’re hanging out with our friends (like in the first and fourth examples), we almost never use 24-hour time.

    And when you do use 24-hour time, never use “o’clock” or “half past” or “5 to” or any of the normal “telling the time” stuff.

    We just say the numbers.

    That means we don’t say “nineteen o’clock.” Ever. Just never say it!

    And we never, ever, ever say “half past twenty.”

    Instead, we just use 12-hour time.

    So don’t say “nineteen o’clock.” Instead, say “seven o’clock.” Thinking of saying “five past twenty”? Don’t! Say “five past eight” instead.

    When I explain this to English learners, they often ask, “But how do you know whether it’s morning or evening?”

    And my answer is always the same: If you like, you can say “p.m.” or “a.m.” to clarify. But how many people go to the cinema at 7 in the morning? Usually, the context is clear enough.

    And then they say, “Thanks. Also, your hair is looking great today.”

    2. 24-hour time for scheduled events (usually transport)

    When we’re talking about a train or a plane or a bus leaving, we can use 24-hour time, and it doesn’t sound too weird, even when we’re talking to friends (like in the second example).

    And we can certainly expect to hear it when it’s being announced at an airport or station (like in the third example).

    The 14:00 to Amsterdam has been delayed ... by 4 days.

    3. There are three ways of saying “half past something”

    … and none of them includes “o’clock.”

    You can say “06:30” in three different ways:

    1. “It’s half past 6.” (half past + number)
    2. “It’s 6 thirty.” (number + thirty)
    3. “It’s half 6.” (half + number) — this one’s a bit informal, and it will confuse Germans.

    But you can never, ever, ever say “it’s half past 6 o’clock.”

    Remember, we only use “o’clock” when the time is on the hour (“two o’clock,” “four o’clock,” “one o’clock,” etc.) and no other situation!

    4. Use “oh”

    The last example above (3:03) is a little tricky. If you have to express a time like this, instead of saying “zero,” just say “oh.”

    3:03 = “three oh-three”
    1:08 = “one oh-eight”

    Saying decimals in English

    OK. You may be wondering what a “decimal” is.

    Well, you’re about to find out!

    First, you try!

    First of all, let’s try saying these sentences:

    • According to my calculations, the answer is 6.66666666666666666666666666666666 …
    • Yes, we must angle the mirror at precisely 45.665° to destroy the ships and rule the world!

    Archimedes burns ships with mirrors

    This may or may not have actually happened.

    Was I right?

    OK, let’s check it!

    45.665° = “forty-five point six six five degrees”
    66.6666666666… = “sixty-six point six recurring”

    What are the rules here?

    There are three things to remember here:

    1. Say “point” in decimal numbers

    Simple rule, right? Just say “point” and not “dot” or “full stop.” Or “elephant.” Definitely don’t say “elephant.”

    2. After “point,” say the numbers one by one

    Mathematically speaking, the numbers after the point (665 in the example above) are not hundreds. So we don’t say “six hundred and sixty-five.”

    After the point, we just say the numbers one by one (“six six five”).

    3. When numbers repeat forever, just say “recurring”

    Maths is weird, and I find it strange that stuff like this can happen with numbers.

    But when you have the number 6 repeating itself forever, I’d recommend not saying the number again and again until you die of thirst or boredom and all your friends have left the room.

    Just say it once and add “recurring.”

    Sometimes, more than one number repeats itself over and over, like this: 12.131313131313 …

    In this case, just say the pair of numbers that repeat themselves (in this case “one three”) and add “recurring.”

    12.131313131313 … = “twelve point one three recurring”

    First, Second, Third… (ordinal numbers)

    First, you try!

    You know what to do:

    • Shall we move the meeting to the 3rd?
    • He came in 1st. Again! The man’s a machine!
    • You are currently 256th in the queue. Your call is important to us. Please hold.

    Was I right?

    3rd = “third”
    1st = “first”
    256th = “two hundred and fifty-sixth”

    What are the rules here?

    There are a few very simple rules here.

    1. Use “the” (or the possessive)

    Because ordinal numbers are very specific (How many first places are there in a race?) we almost always use “the” before them.

    Make it an automatic habit!

    Here’s a quick tip, not just for ordinal numbers but generally in English:

    You don’t have to use “the” if you have a possessive.

    So you can say:

    The third horse on the left is looking at me strangely.

    But you can also say:

    May I introduce you to my seventh wife?

    2. Use “-th” for ordinal numbers after 1st, 2nd and 3rd

    Generally speaking, to create an ordinal number, you just add “-th.” (Although sometimes the spelling can be tricky.) Click here for the full list of ordinal numbers.

    1st first
    2nd second
    3rd third
    4th fourth
    5th fifth
    6th sixth
    7th seventh
    8th eighth
    9th ninth
    10th tenth
    11th eleventh
    12th twelfth
    13th thirteenth
    14th fourteenth
    15th fifteenth
    16th sixteenth
    17th seventeenth
    18th eighteenth
    19th nineteenth
    20th twentieth
    21st twenty-first
    22nd twenty-second
    30th thirtieth
    40th fortieth
    50th fiftieth
    60th sixtieth
    70th seventieth
    80th eightieth
    90th ninetieth
    100th hundredth
    1000th thousandth
    1000,000,000th millionth

    It’s the same for small numbers:

    This is the fifth computer he’s bought this year.

    And big ones:

    You’re the ninety-ninth person to ask me that today.

    But be careful. If you’re making 1, 2 or 3 ordinal, remember that they’re completely different:

    • 1st  “first”
    • 2nd  “second”
    • 3rd  “third”

    It’s the same for small numbers:

    It’s the first Sunday of the month — and you know what that means!

    And big ones:

    It’s the fifty-second week of the year. Finally!

    Saying Fractions in English

    First, you try!

    OK. You know the drill. How do you say these sentences?

    • The meeting should’ve just been 1 ½ hours, but because Eduardo wouldn’t stop talking, it went on for over 2 ½ hours. I was late for my tennis team meeting.
    • I don’t want all of it — can you just give me of the pizza? No, make it 2⁄6 … That’s, isn’t it?

    Was I right?

    1 ½ hours = “one and a half hours” or “an hour and a half”
    2 ½ hours = “two and a half hours”
    = “one-sixth” or “a sixth”
    2⁄6 = “two-sixths”
    = “one-third” or “a third”

    What are the rules here?

    1. Use an ordinal number on the bottom

    Remember the ordinal numbers we talked about above?

    We use them for fractions, too.

    Let’s look at a simple fraction: ⅓

    There are two numbers — “1” on the top and “3” on the bottom.

    Simply say the number on the top normally — “one” — and the ordinal of the number on the bottom — “third.”

    Then you have “one third.”

    That’s it!

    2. Make the bottom number plural if the top number is 2 or higher

    Remember that if we’re dealing with a fraction that doesn’t have “1” on the top, the ordinal must be plural.

    So let’s take another example fraction: ⅔

    Take the number on the top as usual (“2”) and make the ordinal on the bottom plural, so “third” becomes “thirds” (because in this case, there are two of them).

    = “two thirds”

    3. Say “quarter” not “fourth” and “half” not “second”

    When the bottom number is 2 or 4, we use “half/halves” and “quarter/quarters.”

    Instead of saying ½ as “one second,” we say “one half” or “a half.”

    And instead of saying ¼ as “one fourth,” we say “one quarter” or “a quarter.”

    4. Get the order right with fractions!

    The usual way to say these numbers is as you read them.

    Let’s look at an example: 2 ½ hours

    Say “two and a half” then “hours” (not “two hours and a half”).

    How to say half in English

    Simple and direct, yeah?

    4. With 1 ½, there’s an alternative!

    Do you remember at the beginning of this post, we saw how we can choose between “one hundred” and “a hundred?”

    Well, it’s the same with “1 ½ ” — you can use “one” or “a.” It’s up to you, but remember that the word order is different:

    An hour and a half

    5. When we say 1 ½, the following noun becomes plural

    Did you notice that in the example above, we said “one and a half hours,” not “one and a half hour”?

    This is a rule in English that a lot of books don’t talk about much.

    But here I am … talking about it!

    I guess the logic is that if the number is anything more than one (including 1.000000001), it’s officially plural.

    Talking about the temperature

    First, you try!

    OK. Can you say these correctly?

    • In the middle of winter, it reached -40°C. My hair started freezing.
    • But then, in spring, it could get up to 1°C.
    • I have no idea whether 12°F is hot or cold.

    Was I right?

    -40°C = “minus forty degrees Celsius/centigrade” or “negative forty degrees Celsius/centigrade” or “forty (degrees) below (zero)”
    1°C = “one degree Celsius/centigrade” or “one (degree) above zero”
    12°F = “twelve degrees Fahrenheit”

    What are the rules here?

    1. There are three ways of talking about temperatures below zero

    So when it’s that cold and your hair is freezing, then it’s probably below zero, right?

    You can say:

    • “Minus 40 degrees” (minus + number + degrees)
    • “Negative 40 degrees” (negative + number + degrees)
    • “Forty (degrees) below (zero)” (number + (degrees) + below (+ zero))

    Remember, you don’t need to say “Celsius” or “Fahrenheit” if it’s clear from the context.

    In fact, you don’t even need to say “degrees” if it’s obvious you’re talking about the temperature.

    Also remember: when you use the third option (with “below”), you don’t need to say “zero” or “degrees,” but only do this when it’s clear whether you’re discussing Celsius or Fahrenheit. And make sure that it’s clear that you’re talking about the temperature and not your downstairs neighbours.

    2. Celsius or centigrade or Fahrenheit?

    OK. This is pretty simple.

    Celsius and centigrade are exactly the same. So don’t worry about mixing these ones up. Because it’s impossible!

    “Fahrenheit” is the weird measurement that the Americans use that I just don’t understand.

    To me, Celsius makes sense: 0°C is where water freezes and 100°C is where it boils.

    I think the best way to think about Fahrenheit is that between 50°F and 100°F is the human comfort zone! (50°F is 10°C and 100°F is almost 40°C.)

    Talking about space

    Not the space with aliens and frightening amounts of radiation. And Sandra Bullock acting badly (as usual).

    I mean the space of a room or a box or a cave.

    First, you try!

    • Yeah, we had to downsize. The new office is only 30m2. And there are 15 of us!
    • Watch this amazing man fit into a box that’s just 30cm3!

    Contortionist in a box

    Man in a box by Keith Allison | CC BY 2.0

    Was I right?

    30m2 = “thirty metres squared” or “thirty square metres”
    30cm3 = “thirty centimeters cubed” or “thirty cubic centimeters”

    What are the rules here?

    1. There are two ways to say m2

    This is pretty simple. You have a choice here.

    You can say “12 metres squared” (number + “metres” + “squared”).

    Or you can go for “12 square metres” (number + “square” + “metres”).

    2. There are two ways to say m3

    Again — it’s really straight-forward:

    You can say “3 metres cubed” (number + “metres” + “cubed”).

    Or you can say “3 cubic metres” (number + “cubic” + “metres”).

    That’s it! Nothing else to see here. Please move on.

    Talking about speed in English!

    No, not the Sandra Bullock film. Please stop talking about Sandra Bullock.

    First, you try!

    OK. Remember to say these before reading on.

    • We don’t have enough road to get up to 88 mph.
    • This bike is capable of getting up to 45 km/h. Seriously.
    • The speed of light? It’s almost 300,000 km/sec.

    Was I right?

    88 mph = “88 miles per hour” or “88 miles an hour”
    45 km/h = “forty-five kilometres per hour” or “forty-five kilometres an hour”
    300,000 km/s = “three hundred thousand kilometres per second” or “three hundred thousand kilometres a second”

    What are the rules here?

    1. “Per hour” or “an hour”?

    When we’re talking about speed, we have a choice — we can say “per hour” or “an hour” (or “per second” or “a second”).

    But which one to use?

    My advice is that in most situations, use “an hour.”

    “Per hour” sounds a little more technical and formal.

    But the difference is small here, so I wouldn’t worry about this too much. There are better things to worry about. Like global warming.

    2. The units are plural

    It’s important to remember that the distances here are very likely to be plural (unless we’re talking about 1mph or 1km/sec).

    So remember that it’s “88 miles per hour” not “mile per hour.”

    That is all!

    Saying years in English

    First, you try!

    • The great fire of London? That was 1666, I think.
    • My gran was one of the oldest people in my town when she died. She was born in 1905. Seriously! Her husband was born in 1900!
    • What did you do for New Year’s 2000?
    • I’ve been thinking about changing jobs since 2003. But I’m still here. Maybe next year.
    • They thought the world was going to end in 2012. But they also thought that the world was flat and that lizards are our rulers.
    • I can’t wait for 2020 and a new decade. This last one was a bit rubbish!

    Was I right?

    1666 = “sixteen sixty-six”
    1905 = “nineteen oh-five”
    1900 = “nineteen hundred”
    2000 = “two thousand”
    2003 = “two thousand and three”
    2012 = “two thousand and twelve” or “twenty twelve”
    2020 = “twenty twenty”

    What are the rules here?

    OK. There’s a lot here. But the good news? It’s all pretty simple.

    1. Cut years into two

    For almost all the years, we cut them into two — the first two numbers and the second two:

    How to say years in English

    2. Remember “oh”

    When the year ends with zero plus a number (e.g. 1903, 1109, 1601) just say “oh” instead of the zero (“nineteen oh-three,” “eleven oh-nine,” “sixteen oh-one”).

    Remember, this only works for years after 1000 and not years beginning with 20 (e.g. 2009).

    3. Use “hundred” or “thousand” when you see lots of zeros

    If the year ends in double zero (e.g. 1400, 1100, 2100) just say “hundred” after the first numbers (“fourteen hundred,” “eleven hundred,” “twenty-one hundred”).

    Remember, this doesn’t work for triple zero years (e.g. 1000, 2000, 3000). With these, we just say “thousand” (“one thousand,” “two thousand,” “three thousand”).

    4. How to say 2001 – 2009

    Although we can say “twenty-oh-three,” a lot of people prefer to say “two thousand and three,” all the way up to “two thousand and ten.”

    But what about after that? What happens after 2010?

    Apparently, no one can agree on this. So we hear people saying “twenty eleven” and other people saying “two thousand and eleven.” Those people have more energy.

    “But that’s mad! Does this continue forever?” I can hear you asking.

    The answer is “yes, it is mad” and “fortunately not.”

    Because when we get back to 2020, we’re back to the old system again (“twenty twenty,” “twenty twenty-eight,” “twenty fifty-four,” etc.)


    OK! You’ve made it to the end! Congratulations! You rule!

    You are now a MASTER of saying numbers in English!

    But you’ll need to do one more thing to really take in what you’ve learned today.

    Look at these numbers — can you write them out in full?

    1. 188,198,023 m2
    2. $14.99
    3. 15:06 (with a friend)
    4. 13.131313131313 …
    5. 4 ½ km
    6. -15°C
    7. 45 mph
    8. 2001

    Write your answers in the comments!


    Did you find this useful? Do you know any people (or koalas) that might also benefit from this? Then BE AWESOME AND SHARE! Spread the knowledge!

    Понравилась статья? Поделить с друзьями:
  • Word for in complete agreement
  • Word for in charge of something
  • Word for in between time
  • Word for in between the lines
  • Word for in between jobs