function method
i. void display(String str.int p)with one string argment and one integer argument.
it display all the upper character if 'p' is 1(one)otherwise, display all the lowercase characters.
ii. void display (String str, char chr) with one String argument and one character argument. It display all the vowels if chr is 'v' otherwise, finds its cube.
View Answers
July 30, 2012 at 10:54 AM
Here is an example where we have created a function that accepts a string and an integer value and perform a upper case and lowercase method to the string.
import java.util.*;
class FunctionExample
{
void display(String str,int p){
if(p==1){
System.out.println(str.toUpperCase());
}
else{
System.out.println(str.toLowerCase());
}
}
public static void main(String[] args)
{
Scanner input=new Scanner(System.in);
System.out.print("Enter string: ");
String st=input.next();
System.out.print("Enter integer: ");
int i=input.nextInt();
FunctionExample f=new FunctionExample();
f.display(st,i);
}
}
July 30, 2012 at 11:09 AM
Here is an example where we have created a function that accepts a string and a character value.
import java.util.*;
class FunctionExample
{
void display(String str,char chr){
if(chr=='v'){
String vowels = "aeiouAEIOU";
String res="";
for( int i = 0; i < str.length(); i++ )
if( vowels.indexOf( str.charAt( i ) ) != -1 )
res=res+str.charAt( i );
System.out.println("Vowels are: "+res);
}
}
public static void main(String[] args)
{
Scanner input=new Scanner(System.in);
System.out.print("Enter string: ");
String st=input.next();
System.out.print("Enter character: ");
char ch=input.next().charAt(0);
FunctionExample f=new FunctionExample();
f.display(st,ch);
}
}
Ads
Related Tutorials/Questions & Answers:
function method
function method i. void display(String str.int p)with one string... is an example where we have created a
function that accepts a string and an integer value and perform a upper case and lowercase
method to the string.
import
function method
function method input Rs. 12000
Discount= 10%, 8%
= Rs.(12000-1200)
= Rs.(10800-864)
= Rs. 9936
Advertisements
function method
function method input Rs. 12000
Discount= 10%, 8%
= Rs.(12000-1200)
= Rs.(10800-864)
= Rs. 9936
method and function difference
method and
function difference so far, I understand that
method and
function are the same thing... but is there any difference between the two terms? Please explain me if both are different terms.
Thanks in advance
How i write a function/method in jsp?
How i write a
function/
method in jsp? How write the
function/
method in jsp?
Using that
method i can retrieve the value coming from database.
give me example plz.
Actually i want to show the list of user detail
function
function difference between
function overloading and operator overloading
method
method how and where, we can define methods ?
can u explain me with full programme and using comments
method
method can you tell me how to write an abstract
method called ucapan() for B2 class
class A2{
void hello(){
system.out.println("hello from A2");
}}
class B2 extends A2{
void hello(){
system.out.println("hello from B2
JavaScript method eval()
JavaScript
method eval()
This section illustrates you the use of JavaScript
method eval(). This
function evaluates the string
passed into the
method and executes it.
Its
syntax
method name
method name Is there any
method which is equivalent to c++'s delay(int)
function
Calling a function
Calling a function Hi, I have a
function xyz() in php code. When a button is clicked it should execute that particular
function for that i have written as
<form action="<?=$_SERVER['PHP_SELF'];?>"
method="post">
JPA Abs Function
JPA Abs
Function
In this section, you will learn about the JPA Abs()
function. This
method returns absolute value of the given field.
JPA Abs
Function
JPA Sqrt Function
JPA Sqrt
Function
In this section, you will learn about the JPA sqrt()
function. This
method returns the square root of the given argument.
JPA sqrtFunction
JPA Locate Function
()
function. This
method returns the index of search string in
specified string. String... JPA Locate
Function
 ...;.
JPA locate
Function:
Query query=
em.createQuery("SELECT
function addValue
function addValue i have question about the javascript the
function addvalue script is working to add some name but is not save on the html so please resolve my problem what can i do for addvalue
function will be to save
function addValue
function addValue i have question about the javascript the
function addvalue script is working to add some name but is not save on the html so please resolve my problem what can i do for addvalue
function will be to save
function addValue
function addValue i have question about the javascript the
function addvalue script is working to add some name but is not save on the html so please resolve my problem what can i do for addvalue
function will be to save
using function
using function using a
function to find the value of v from the foiiowing expression
1v=1u+1*f
If function in PHP
If
function in PHP Hi,
Provide me the example of If
function in PHP.
Thanks
Hi,
If
function is PHP is used to check for some condition and the execute a block of code.
He is an example of if()
function in PHP
disable function
disable function Sir,
I have called a java script
function when one radio button is checked i want to disable this
function when another radio button is checked ,both radio buttons are of same group
Please help
Thanks in advance
method inside the method??
method inside the
method?? can't we declare a
method inside a
method in java??
for eg:
public class One
{
public static void main(String[] args)
{
One obj=new One();
One.add();
private static void add
unoin function
unoin function how to define a union
function in java?(ex:a=a U b)
how to write tha java code?give ex.
Java Union
Function
You have learnt union, intersection etc in Sets. Here the given code finds the union of two
get method
get
method how to use get
method:
secure
method is post
method and most of use post
method why use a get
method
method question
method question How do I figure out the difference in a
method heading, a
method body, and a
method definition
Method
Method
In this section, we will explore the concept of
method
in the reference of object oriented... and behaviors are defined by methods.
Method : An brief
introduction
Methods
Function pointer in c
Function pointer in c What is the difference between
function call with
function pointer and without
function pointer(normal
function call
The strpos() function
The strpos()
function
The strpos()
function is used to find the availability of a sub string/string
inside a string.
This
function returns FALSE ,if the string or sub string provided is not
found.
The syntax of the above
method
using function
using function write a program using
function overloading to accept any sentence and print vowels and consonants sepratly
Here is an example that accepts a sentence from the user and display the vowels and consonants