Submitted Questions

  • Compute Average of Two Scores

    Describe an algorithm to compute the average of two scores obtained by each of the 100 students

    HAkizimfura Yves

    • May 27th, 2014

    Write an algorithm that will display the sum of 5 integers by using two variables only
    NB: do not use loops!

    Shikhar Singhal

    • Jun 10th, 2013

    Algorithm- Let score1[100] and score2[100] be the arrays storing respective marks of the 100 students let float avg[100] store the average of the respective students. for n=0 to 99 avg[n]= (f...