TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Java - Method Concept
Senthilvelan Sambamoorthy
Aug 20
2016
Code
506
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
area.rar
class
area
{
int
b=
10
;
int
h =
5
;
void
calc()
{
int
x;
x = b*h;
System.out.println(
"Area : "
+x);
}
public
static
void
main(String arg[])
{
area a =
new
area();
a.calc();
}
}
Java
Method Concept