Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C Exercises: Calculate the total, percentage and division to take marks of three subjects

C Conditional Statement: Exercise-12 with Solution

Write a C program to read roll no, name and marks of three subjects and calculate the total, percentage and division.

Sample Solution:

C Code:

#include <stdio.h>
#include <string.h>

void main()
{
    int rl,phy,che,ca,total;
    float per;
    char nm[20],div[10];
    printf("Input the Roll Number of the student :");
    scanf("%d",&rl);
    printf("Input the Name of the Student :");
    scanf("%s",nm);
    printf("Input  the marks of Physics, Chemistry and Computer Application : ");
    scanf("%d%d%d",&phy,&che,&ca);
    total = phy+che+ca;
    per = total/3.0;
    if (per>=60)
	 strcpy(div,"First");
    else
	if (per<60&&per>=48)
	    strcpy(div,"Second");
	else
	    if (per<48&&per>=36)
		strcpy(div,"Pass");
	     else
		strcpy(div,"Fail");

       printf("\nRoll No : %d\nName of Student : %s\n",rl,nm);
       printf("Marks in Physics : %d\nMarks in Chemistry : %d\nMarks in Computer Application : %d\n",phy,che,ca);
       printf("Total Marks = %d\nPercentage = %5.2f\nDivision = %s\n",total,per,div);
}

Sample Output:

Input the Roll Number of the student :784                                                                     
Input the Name of the Student :James                                                                          
Input  the marks of Physics, Chemistry and Computer Application : 70 80 90                                    
                                                                                                              
Roll No : 784                                                                                                 
Name of Student : James                                                                                       
Marks in Physics : 70                                                                                         
Marks in Chemistry : 80                                                                                       
Marks in Computer Application : 90                                                                            
Total Marks = 240                                                                                             
Percentage = 80.00                                                                                            
Division = First  

Flowchart:

Flowchart: Calculate the total, percentage and division to take marks of three subjects.

C Programming Code Editor:

Improve this sample solution and post your code through Disqus.

Previous: Write a C program to calculate the root of a Quadratic Equation.
Next: Write a C program to read temperature in centigrade and display a suitable message according to temperature state below.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



C Programming: Tips of the Day

Static variable inside of a function in C

The scope of variable is where the variable name can be seen. Here, x is visible only inside function foo().

The lifetime of a variable is the period over which it exists. If x were defined without the keyword static, the lifetime would be from the entry into foo() to the return from foo(); so it would be re-initialized to 5 on every call.

The keyword static acts to extend the lifetime of a variable to the lifetime of the programme; e.g. initialization occurs once and once only and then the variable retains its value - whatever it has come to be - over all future calls to foo().

Ref : https://bit.ly/3fOq7XP