A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

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

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

0

Write a C# Sharp 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 Subjects >=140

Sample Output:

Find eligibility for admission :                                                                              
----------------------------------                                                                                                    
Eligibility Criteria :                                                                                        
Marks in Maths >=65                                                                                           
and Marks in Phy >=55                                                                                         
and Marks in Chem>=50                                                                                         
and Total in all three subject >=180                                                                          
or Total in Maths and Physics >=140                                                                           
-------------------------------------                                                                         
Input the marks obtained in Physics :65                                                                       
Input the marks obtained in Chemistry :60                                                                     
Input the marks obtained in Mathematics :75                                                                   
Total marks of Maths, Physics and Chemistry : 200                                                             
Total marks of Maths and  Physics : 140                                                                       
The  candidate is eligible for admission. 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

using System;  
public class Exercise10  
{  
    public static void Main()
{  
   int p,c,m;

    Console.Write("\n\n");
    Console.Write("Find eligibility for admission :\n");
    Console.Write("----------------------------------");
    Console.Write("\n\n");

   Console.Write("Eligibility Criteria :\n");
   Console.Write("Marks in Maths >=65\n");
   Console.Write("and Marks in Phy >=55\n");
   Console.Write("and Marks in Chem>=50\n");
   Console.Write("and Total in all three subject >=180\n");
   Console.Write("or Total in Maths and Physics >=140\n");
   Console.Write("-------------------------------------\n");


    Console.Write("Input the marks obtained in Physics :");
    p = Convert.ToInt32(Console.ReadLine());
    Console.Write("Input the marks obtained in Chemistry :");
    c = Convert.ToInt32(Console.ReadLine());
    Console.Write("Input the marks obtained in Mathematics :");
    m = Convert.ToInt32(Console.ReadLine());
   Console.Write("Total marks of Maths, Physics and Chemistry : {0}\n",m+p+c);
   Console.Write("Total marks of Maths and  Physics : {0}\n",m+p);

   if (m>=65)
         if(p>=55)
             if(c>=50)
	        if((m+p+c)>=180||(m+p)>=140)
	           Console.Write("The  candidate is eligible for admission.\n");
	        else
	          Console.Write("The candidate is not eligible.\n\n");
             else
	    Console.Write("The candidate is not eligible.\n\n");
         else
	   Console.Write("The candidate is not eligible.\n\n");
    else
     Console.Write("The candidate is not eligible.\n\n");
}
}

need an explanation for this answer? contact us directly to get an explanation for this answer
need an explanation for this answer? contact us directly to get an explanation for this answer

using System;  
public class Exercise10  
{  
    public static void Main()
{  
   int p,c,m;

    Console.Write("\n\n");
    Console.Write("Find eligibility for admission :\n");
    Console.Write("----------------------------------");
    Console.Write("\n\n");

   Console.Write("Eligibility Criteria :\n");
   Console.Write("Marks in Maths >=65\n");
   Console.Write("and Marks in Phy >=55\n");
   Console.Write("and Marks in Chem>=50\n");
   Console.Write("and Total in all three subject >=180\n");
   Console.Write("or Total in Maths and Physics >=140\n");
   Console.Write("-------------------------------------\n");


    Console.Write("Input the marks obtained in Physics :");
    p = Convert.ToInt32(Console.ReadLine());
    Console.Write("Input the marks obtained in Chemistry :");
    c = Convert.ToInt32(Console.ReadLine());
    Console.Write("Input the marks obtained in Mathematics :");
    m = Convert.ToInt32(Console.ReadLine());
   Console.Write("Total marks of Maths, Physics and Chemistry : {0}\n",m+p+c);
   Console.Write("Total marks of Maths and  Physics : {0}\n",m+p);

   if (m>=65)
         if(p>=55)
             if(c>=50)
	        if((m+p+c)>=180||(m+p)>=140)
	           Console.Write("The  candidate is eligible for admission.\n");
	        else
	          Console.Write("The candidate is not eligible.\n\n");
             else
	    Console.Write("The candidate is not eligible.\n\n");
         else
	   Console.Write("The candidate is not eligible.\n\n");
    else
     Console.Write("The candidate is not eligible.\n\n");
}
}

need an explanation for this answer? contact us directly to get an explanation for this answer
need an explanation for this answer? contact us directly to get an explanation for this answer

using System;  
public class Exercise10  
{  
    public static void Main()
{  
   int p,c,m;

    Console.Write("\n\n");
    Console.Write("Find eligibility for admission :\n");
    Console.Write("----------------------------------");
    Console.Write("\n\n");

   Console.Write("Eligibility Criteria :\n");
   Console.Write("Marks in Maths >=65\n");
   Console.Write("and Marks in Phy >=55\n");
   Console.Write("and Marks in Chem>=50\n");
   Console.Write("and Total in all three subject >=180\n");
   Console.Write("or Total in Maths and Physics >=140\n");
   Console.Write("-------------------------------------\n");


    Console.Write("Input the marks obtained in Physics :");
    p = Convert.ToInt32(Console.ReadLine());
    Console.Write("Input the marks obtained in Chemistry :");
    c = Convert.ToInt32(Console.ReadLine());
    Console.Write("Input the marks obtained in Mathematics :");
    m = Convert.ToInt32(Console.ReadLine());
   Console.Write("Total marks of Maths, Physics and Chemistry : {0}\n",m+p+c);
   Console.Write("Total marks of Maths and  Physics : {0}\n",m+p);

   if (m>=65)
         if(p>=55)
             if(c>=50)
	        if((m+p+c)>=180||(m+p)>=140)
	           Console.Write("The  candidate is eligible for admission.\n");
	        else
	          Console.Write("The candidate is not eligible.\n\n");
             else
	    Console.Write("The candidate is not eligible.\n\n");
         else
	   Console.Write("The candidate is not eligible.\n\n");
    else
     Console.Write("The candidate is not eligible.\n\n");
}
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (3)

Similar questions


need a help?


find thousands of online teachers now