Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
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
584
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