Q:

Calculate Sum Of Numbers Are Dividable By 7 & 8 Between 100 And 2000 Using Java

0

This program is used to calculate sum of numbers are dividable by 7,8 between 100,2000

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

// 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++;
} 
} 
System.out.println(); 
System.out.println("\n\n\tCOUNT = " + count); 
System.out.println("\n\n\tSUM = " + sum); 
} 
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now