diff --git a/Admission.c b/Admission.c new file mode 100644 index 0000000..a367196 --- /dev/null +++ b/Admission.c @@ -0,0 +1,44 @@ +/* +WAP 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 >=190 +or +Total in Math and Physics >=140 +*/ + +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 >=190\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)>=190||(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"); +} \ No newline at end of file diff --git a/Admission.exe b/Admission.exe new file mode 100644 index 0000000..d386e71 Binary files /dev/null and b/Admission.exe differ diff --git a/Order Of Programs.md b/Order Of Programs.md index 8b9b39d..42d2c8f 100644 --- a/Order Of Programs.md +++ b/Order Of Programs.md @@ -17,4 +17,5 @@ |15 | MaximumNo2.c | MaximumNo2.exe | WAP to find out maximum out of two numbers | |16 | MaximumNo4.c | MaximumNo4.exe | WAP to find out maximum out of three numbers using nested if..else | |17 | PositiveOrNegative.c | PositiveOrNegative.exe | WAP to find out a given number is positive, negative or 0 | -|18 | Grade.c | Grade.exe | Use else if ladder statements to find out the result grade from the percentage (Mentioned in file of the program). | \ No newline at end of file +|18 | Grade.c | Grade.exe | Use else if ladder statements to find out the result grade from the percentage (Mentioned in file of the program) | +|19 | Admission.c | Admission.exe | to find the eligibility of admission for a professional course based on the following criteria (Mentioned in file of the program) | \ No newline at end of file