Thread: Help me do my task

  1. #1
    Registered User
    Join Date
    Sep 2017
    Posts
    5

    Question Help me do my task

    Hello. Sorry for bad english first of all, I'm not a native speaker. So I've got a task to program in C language and I just can't figure out how to solve it and do it properly --- I'm very new to programming so yeah... The task is: Make a program, that whenever you type some kind of number, it displays its squares total sum. For example if I type in the program let's say 4, it will be (1*1+2*2+3*3+4*4) and it will show me the answer of 30, or if I type 6 (1*1+2*2+3*3+4*4+5*5+6*6) it will be 91. I'm guessing this has something to do with while () function?

    Thanks for taking your time

  2. #2
    Registered User
    Join Date
    Jul 2015
    Posts
    22
    Quote Originally Posted by mykelis View Post
    Hello. Sorry for bad english first of all, I'm not a native speaker. So I've got a task to program in C language and I just can't figure out how to solve it and do it properly --- I'm very new to programming so yeah... The task is: Make a program, that whenever you type some kind of number, it displays its squares total sum. For example if I type in the program let's say 4, it will be (1*1+2*2+3*3+4*4) and it will show me the answer of 30, or if I type 6 (1*1+2*2+3*3+4*4+5*5+6*6) it will be 91. I'm guessing this has something to do with while () function?

    Thanks for taking your time
    so ill give you a clue first you need an input
    Code:
    scanf("%d", &num);
    then use that input to determine how many times you want that loop to work.
    Code:
    for(i=1;i<=num;i++) { 
    //your algo here
    }
    Last edited by John Roble; 09-10-2017 at 07:45 AM.

  3. #3
    Registered User
    Join Date
    Sep 2017
    Posts
    5
    THANKS! It worked so well!

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Whether you can do this task?
    By rale.pop in forum C Programming
    Replies: 5
    Last Post: 05-20-2017, 12:08 PM
  2. Help from the task
    By MAJA83 in forum C Programming
    Replies: 1
    Last Post: 06-06-2012, 11:35 AM
  3. Need help to do the big task
    By Steve Cao in forum Linux Programming
    Replies: 1
    Last Post: 07-16-2010, 02:01 PM
  4. Replies: 2
    Last Post: 12-31-2007, 11:40 AM
  5. Task Bar
    By cfrost in forum Windows Programming
    Replies: 1
    Last Post: 07-22-2004, 07:37 AM

Tags for this Thread