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
Calculate Squre Program Using Java
Senthilvelan Sambamoorthy
Aug 12
2016
Code
556
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
squ.rar
// squre program
class
squ
{
void
calc(
int
x)
{
int
y;
y = x*x;
System.out.println(
"Square : "
+y);
}
public
static
void
main(String arg[])
{
squ a =
new
squ();
a.calc(
5
);
}
}
Java
Calculate Squre Program