C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
calculate Method using Java
WhatsApp
Senthilvelan Sambamoorthy
Aug 13
2016
598
0
0
ssvprg.rar
public
class
ssvprg
{
public
static
void
action(
int
value)
{
System.out.println(
"Int = "
+ Integer.toString(value));
}
public
static
void
action(String value)
{
System.out.println(
"Length = "
+ value.length());
}
public
static
void
main(String[] args)
{
// Call with Integer argument.
action(
1
);
// Call with String argument.
action(
"cat"
);
}
Java
Up Next
calculate Method using Java