Computer Science, asked by nakulnamik2039, 8 months ago

Write pseudocode that will perform the following:
a) Read the marks of three subjects: Computer Science, Mathematics and Physics, out of 100
b) Calculate the aggregate marks
c) Calculate the percentage of marks

Answers

Answered by tanishakharbandaonli
10

Answer:

look at that noobb

on:

Write pseudocode that will perform the following:

a) Read the marks of three subjects: Computer Science, Mathematics and Physics, out of 100

b) Calculate the aggregate marks

c) Calculate the percentage of marks

Answered by sampakrish123
13

Answer:

Write a C program to find the eligibility of admission for a professional course based on the following criteria:

Marks in Maths >=65

Marks in Phy >=55

Marks in Chem>=50

Total in all three subject >=180

or

Total in Math and Physics >=140

Sample Solution:

C Code:

#include <stdio.h>

void main()

{ int p,c,m,t,mp;

printf("Eligibility Criteria :\n");

printf("Marks in Maths >=65\n");

printf("and Marks in Phy >=55\n");

printf("and Marks in Chem>=50\n");

printf("and Total in all three subject >=180\n");

printf("or Total in Maths and Physics >=140\n");

printf("-------------------------------------\n");

printf("Input the marks obtained in Physics :");

scanf("%d",&p);

printf("Input the marks obtained in Chemistry :");

scanf("%d",&c);

printf("Input the marks obtained in Mathematics :");

scanf("%d",&m);

printf("Total marks of Maths, Physics and Chemistry : %d\n",m+p+c);

printf("Total marks of Maths and Physics : %d\n",m+p);

if (m>=65)

if(p>=55)

if(c>=50)

if((m+p+c)>=180||(m+p)>=140)

printf("The candidate is eligible for admission.\n");

else

printf("The candidate is not eligible.\n");

else

printf("The candidate is not eligible.\n");

else

printf("The candidate is not eligible.\n");

else

printf("The candidate is not eligible.\n");

}

Copy

Similar questions