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 Sum Of Numbers Are Dividable By 7 & 8 Between 100 And 2000 Using Java
Senthilvelan Sambamoorthy
Aug 13
2016
Code
955
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
ssvsumnat2.rar
// Sum of numbers are dividable by 7 & 8 between 100 and 2000
class
ssvsumnat2
{
public
static
void
main(String args[])
{
int
sum=
0
,count=
0
;
System.out.println(
"\n\n\tSum of numbers are divible by 7 & 8 between 100 and 2000"
);
System.out.println(
"\t========================================================="
);
for
(
int
i=
100
;i<=
2000
;i++)
{
if
( (i%
7
==
0
)&&(i%
8
==
0
) ){
sum = sum + i;count++;}
}
// end of for
System.out.println();
System.out.println(
"\n\n\tCOUNT = "
+ count);
System.out.println(
"\n\n\tSUM = "
+ sum);
}
// end of main function
}
// end of class
Java