Q3 If the marks obtained by a student in five different subjects are input through the keyboard, write a program to 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 solution 3

Program: 53

Write a program to calculate aggregate marks and percentage marks obtained by the student in five subjects. | Let Us C Solutions

 

 

#include<stdio.h>
#include<conio.h>
void main()
{
    int hindi, math, english, science, art, total;
    float percentage;
    printf("Enter the marks of Hindi: ");
    scanf("%d", &hindi);

    printf("Enter the marks of Math: ");
    scanf("%d", &math);

    printf("Enter the marks of English: ");
    scanf("%d", &english);

    printf("Enter the marks of Science: ");
    scanf("%d", &science);

    printf("Enter the marks of Art: ");
    scanf("%d", &art);

    total = hindi+math+english+science+art;

    percentage = total/5;

    printf("\nAggregate marks: %d", total);
    printf("\nPercentage marks: %0.2f %%", percentage);
    getch();
}

Output:

Enter the marks of Hindi: 50
Enter the marks of Math: 50
Enter the marks of English: 50
Enter the marks of Science: 50
Enter the marks of Art: 60

Aggregate marks: 260
Percentage marks: 52.00 %
Lokesh Kumar: Being EASTER SCIENCE's founder, Lokesh Kumar wants to share his knowledge and ideas. His motive is "We assist you to choose the best", He believes in different thinking.

View Comments (2)

Related Post
Leave a Comment

This website uses cookies.