player is good if the following conditions are satisfied:
He is either from “India”, “Japan” or “Korea”
He has a minimum of 3 years of experience
He has won at least 3 major tournaments, and one of them must be "World Championship Tournament".
He must know more than 10 techniques. (but see next question)
If he knows less than 10 techniques, then he must be a world champion.
His name contains at least 3 words. For example "Sachin Tendulkar" will not meet this condition.
Write a method:
boolean isGoodPlayer(String name, String country, int yearsExperience, String[] majorTournamentsWon, String[] techniques, boolean isWorldChampion)
name
country
yearsExperience
majorTournamentsWon
techniques
isWorldChampion
Answer Posted / ranjeet great
//I am not posting solution..You do your wprk by own..just use it..
import java.util.Scanner;
public class RanjeetGreatJavaClass
{
public static void main(String args[])
{
int age;
String firstname,middlename,lastname,degree;
boolean hasOwnClinic;
Scanner in = new Scanner(System.in);
System.out.println("Enter First Name :");
firstname = in.nextLine();
System.out.println("Enter Middle Name");
middlename = in.nextLine();
System.out.println("Enter Last Name");
lastname= in.nextLine();
System.out.println("Enter Degree");
degree= in.nextLine();
System.out.println("Enter Age");
age = in.nextInt();
System.out.println("Dr has his own Clinick ?");
Scanner scanner = new Scanner(System.in);
String answer = scanner.nextLine();
Boolean yn = (answer.equalsIgnoreCase("Y") ? true : false);
System.out.println(yn);
/*
if(scanner.nextBoolean()==true)
{
System.out.println("Dr has his own Clinik");
}
else
{
System.out.println("Dr don't have his own Clinik");
}
*/
System.out.print("How Many Patients :");
int totalPatients = in.nextInt();
String[] patientsname = new String [totalPatients];
//allows user to input Patientst names
for(int j = 0; j < patientsname.length;j++)
{
System.out.println(j);
System.out.print("Enter Patients Names:");
patientsname[j] = in.nextLine();
}
if (!degree.equalsIgnoreCase("MBBS"))
{
System.out.println("He must have at least 1000 Patients");
}
if (firstname.length()>5&& middlename.equalsIgnoreCase("kumar")&&age>25&°ree.equalsIgnoreCase("MBBS") )
{
for(int i = 0; i < patientsname.length;i++)
{
if(patientsname[i].equalsIgnoreCase("DEVESH")&& totalPatients>200);
{
System.out.println("He is a Good Doctor");
}
if(totalPatients>500&&yn.equals("true"))
{
System.out.println("He is a Good Doctor");
}
}
}
else
{
System.out.println("He is a Bad Doctor");
}
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Describe explain how arrays can be passed to a user defined function
Explain what does the format %10.2 mean when included in a printf statement?
Explain how can I convert a string to a number?
What is the default value of local and global variables in c?
How many types of sorting are there in c?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What are the types of bitwise operator?
What is huge pointer in c?
Explain what is meant by high-order and low-order bytes?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is pragma in c?
What is static and auto variables in c?
Why & is used in scanf in c?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)