(c) If the marks obtained by a student in five different subjects are input through the keyboard, find out the aggregate marks and percentage marks obtained by the student. Assume that the maximum marks that can be obtained by a student in each subject is 100.

Let Us C by Yashwant Kanetkar

 
Solution By Muhammad Kaleem UIlah



                                                                  Exercise Questions 
[H] Write C programs for the following:
(c) If the marks obtained by a student in five different subjects are input through the keyboard, find out the aggregate marks and percentage marks obtained by the student. Assume that the maximum marks that can be obtained by a student in each subject is 100.

#include <stdio.h>

#include <stdlib.h>

int main()

{

    int pf,dld,ps,dm,la,aggregate;

    printf("\n\t\t Do You Want to Calculate Your Aggregate ?");    printf("\n\t\t************************************************");

    printf("\n\t\t Enter Programming Fundamental Marks = ");

    scanf("%d",&pf);

    printf("\n\t\t Enter Digital Logic Design Marks = ");

    scanf("%d",&dld);

    printf("\n\t\t Enter Pakistan Studies Marks = ");

    scanf("%d",&ps);

    printf("\n\t\t Enter Discrete Mathematics = ");

    scanf("%d",&dm);

    printf("\n\t\t Enter Linear Algebra Marks = ");

    scanf("%d",&la);

    aggregate = (pf+dld+ps+dm+la)*100/500;

    printf("\n\t\tYour Aggregate = %d",aggregate);

    return 0;

}

Comments

Popular posts from this blog

(k) A cashier has currency notes of denominations 10, 50 and 100. If the amount to be withdrawn is input through the keyboard in hundreds, find the total number of currency notes of each denomination the cashier will have to give to the withdrawer.

(j) In a town, the percentage of men is 52. The percentage of total literacy is 48. If total percentage of literate men is 35 of the total population, write a program to find the total number of illiterate men and women if the population of the town is 80,000.

EXERCISE 01 Complete Solved LET US C by Yashwant Kanetkar