Thread: Test your genious!

  1. #31
    & the hat of GPL slaying Thantos's Avatar
    Join Date
    Sep 2001
    Posts
    5,681
    I'm pretty sure it was RoD
    Edit:
    Yep RoD http://cboard.cprogramming.com/showt...383#post419383

    BTW Welcome back

  2. #32
    Registered User Dante Shamest's Avatar
    Join Date
    Apr 2003
    Posts
    970
    Quote Originally Posted by stovellp
    I heard children from asian countries (especially Japan) find the first few years at school very easy as far as maths goes because their counting system goes
    "zero one two three four five six seven eight nine"
    then
    "one-zero one-one one-two"...
    ie, they only have to remember the first 10 numbers, while us English speakers have the first 10, then we get into "teens", then "twenties", then "hundreds" etc etc.

    Can anyone from these countries or who speaks these languages confirm it?
    Not sure about Japanese, but what you say is true for Mandarin Chinese.

  3. #33
    Carnivore ('-'v) Hunter2's Avatar
    Join Date
    May 2002
    Posts
    2,879
    I heard children from asian countries (especially Japan) find the first few years at school very easy as far as maths goes because their counting system goes
    "zero one two three four five six seven eight nine"
    then
    "one-zero one-one one-two"...
    ie, they only have to remember the first 10 numbers, while us English speakers have the first 10, then we get into "teens", then "twenties", then "hundreds" etc etc.
    Not sure about other dialects, but for Mandarin it goes:
    Zero, One, Two, Three, Four, Five, Six, Seven, Eight, Nine
    Ten, Ten-one, Ten-two, Ten-three, Ten-four, Ten-five, Ten-six, Ten-seven, Ten-eight, Ten-nine
    Two-ten, Two-ten-one, Two-ten-two, Two-ten-three, etc...
    Just Google It. √

    (\ /)
    ( . .)
    c(")(") This is bunny. Copy and paste bunny into your signature to help him gain world domination.

  4. #34
    Super Moderater.
    Join Date
    Jan 2005
    Posts
    374
    Yeah that's strange, even my program has difficulties.

    Code:
    #include <iostream>
    #include <string>
    
    using namespace std;
    
    int main()
    {
         
        char array[120]={" FINISHED FILES ARE THE RESULT OF YEARS OF SCIENTIFIC STUDY COMBINED WITH THE EXPERIENCE OF YEARS..."};
        
        int size=strlen(array);
        
        int counter=-3;
        for(int i=0 ; i <size; i++)
        {
            if(array[i]=='F')
            {
                counter++;
            }    
        }
        cout<<counter;
        int stop;
        cin>>stop;
    }

  5. #35
    Registered User
    Join Date
    Nov 2004
    Posts
    11
    Aoccdrnig to rscheearch at Cmabrigde Uinervtisy, it deosn't mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht the frist and lsat ltteer be at the rghit pclae. The rset can be a toatl mses and you can sitll raed it wouthit a porbelm. Tihs is bcuseae the huamn mnid deos not raed ervey lteter by istlef, but the wrod as a wlohe.

  6. #36
    Registered User Queatrix's Avatar
    Join Date
    Apr 2005
    Posts
    1,342
    I understood what you said MW_PAUL_UK. Scarry thing!

  7. #37
    The Defective GRAPE Lurker's Avatar
    Join Date
    Feb 2003
    Posts
    949
    One reason besides the sound differences in of might be the fact that quite a few languages get by without a word filling the space of "of" at all - it is a case, like in Latin.

    Quote Originally Posted by stovellp
    I heard children from asian countries (especially Japan) find the first few years at school very easy as far as maths goes because their counting system goes
    "zero one two three four five six seven eight nine"
    then
    "one-zero one-one one-two"...
    ie, they only have to remember the first 10 numbers, while us English speakers have the first 10, then we get into "teens", then "twenties", then "hundreds" etc etc.

    Can anyone from these countries or who speaks these languages confirm it?

    Languages have many different ways of counting numbers. Japanese's system is essentially 0-10, then 10+1, 10+2 etc. At 20, it is (2 x 10), (2 x 10 + 1), etc. This pattern is continued for a while. This is because Japanese borrowed from Chinese.

    My favorite (and the most complex IMHO) is in Nimbia, a dialect of Gwandara spoken in Nigeria. It is a duodecimal system, so it goes from 1-12 and then gets more complex. It goes 12 + 1, 12 + 2, until 24, which is (12 x 2), then (12 x 2 + 1), etc. 70 is "gume biyar ni gwom" (12 x 5 + 10). This continues up to 144 ("wo"), or "12 squared".

    Hindi is similar to our counting system up to 100. I don't want to spend time going into it now, but here's an example:

    baaruh karor chauntees lakh chhuppun hazar saat sau nuwaasee
    12 × 10000000 + 34 × 100000 + 56 × 1000 + 7 × 100 + 89

    123456789
    Do not make direct eye contact with me.

  8. #38
    Registered User FlameZ's Avatar
    Join Date
    Apr 2005
    Posts
    2
    Good God, I counted it 6! Yey!

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Integer Emulation
    By Elysia in forum C++ Programming
    Replies: 31
    Last Post: 03-18-2008, 01:03 PM
  2. undefined reference
    By 3saul in forum Linux Programming
    Replies: 12
    Last Post: 08-23-2006, 05:28 PM
  3. C++ Operator Overloading help
    By Bartosz in forum C++ Programming
    Replies: 2
    Last Post: 08-17-2005, 12:55 PM
  4. MSVC Template Constructor/Assignment Errors
    By LuckY in forum Windows Programming
    Replies: 3
    Last Post: 07-22-2005, 02:57 PM
  5. Question About Linker Errors In Dev-C++
    By ShadowMetis in forum C++ Programming
    Replies: 9
    Last Post: 08-18-2004, 08:42 PM