Roman Lobovikov

Junior Frontend Developer

Roman Lobovikov avatar

About Me

I'm a patient and hardworking person. I desperately want to become a Web Developer. I'm currently taking a preparatory course «JavaScript/Front-end. Stage 0» at RS School.

Contacts

Skills

Code Example


int getSumOfDivisors(int n) {
    int sum = 1;
    int i = 2;
    for (; i < n / i; i++) {
        if (n / i * i == n) {
            sum += i + n / i;
        }
    }
    if (i * i == n)
        sum += i;
    return sum;
}
      

Projects

Education & Languages

Bachelor of Software Engineering in Izhevsk State Technical University

Languages: