User Profile

Collapse

Profile Sidebar

Collapse
momo1014
momo1014
Last Activity: Aug 13 '23, 03:09 AM
Joined: Apr 30 '23
Location: Beijing, China (so I'm not so good at English)
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • momo1014
    replied to Coder Vs Programmer
    programmer:
    a person who writes computer programs

    coder:
    a computer programmer

    from Webster's Advanced Learner's Dictionary
    See more | Go to post

    Leave a comment:


  • momo1014
    replied to Int to string
    in C
    I've write a int to string function in C, you can take a look at it.
    Code:
    #include <stdio.h>
    
    void int_to_str(int num,char* s_r)
    {
        char s[100];
        int add_num;
        int num_len = 0;
        for (int i=0;num > 0;i++)
        {
            num_len++;
            add_num = (num%10)+'0';
            s_r[i] = add_num;
            num = num/10;
    ...
    See more | Go to post

    Leave a comment:


  • momo1014
    replied to What is your OS and Python Version
    Windows 8.1 & Python 3.11.3. I'm using VsCode and sometimes using IDLE. I use Tkinter to make GUI and Pygame to make video games. I use pip to install packages.

    P.S.
    why are you guys using Python 2? Python 3 is way much better.
    See more | Go to post

    Leave a comment:


  • momo1014
    started a topic Hello to everybody!

    Hello to everybody!

    Hello World! Hello to all you guys. I just register to this website, and I decided this is a pretty good place! I'm a 13-year old from China. I've learnt Python and I'm currently learn C. Hopfully I'll start learning C++ in June!

    P.S.
    I'll play Minecraft for an hour every night, so any good server to recommand?
    See more | Go to post
No activity results to display
Show More
Working...