Can help in java? Define a static method, which as parameters object String (symbolizes low) and symbol and returns a Boolean value, the result of the check contained in the string. In the test function, illustrate accept the method.
Can help in java?
Define a static method, which as parameters object String (symbolizes low) and symbol and returns a Boolean value, the result of the check contained in the string. In the test function, illustrate accept the method.
// Defining the Main Method
public class Main
{
// Defining the static method
public static boolean TestMethod(String s,String c)
{
if(s.contains(c)==true)
return true;
else
return false;
}
// Main function
public static void main(String[] args)
{
// First testcase
String s = "ABCD";
String c = "C";
System.out.println(Main.TestMethod(s,c));
// Second testcase
s = "ABCD";
c = "b";
System.out.println(Main.TestMethod(s,c));
}
}
Step by step
Solved in 2 steps with 1 images