keepkoding
Question
ENTER THE Nth TERM 10 SUM OF SERIES=129
Code
import java.util.Scanner; public class SumSeries { public static void main() { int n=0,i=0,j=0,flag=0; long sum=0,num=1; Scanner sc=new Scanner(System.in); System.out.println("ENTER THE Nth TERM"); n=sc.nextInt(); for(i=1;i<=n;i++) { do { num++; flag=0; for(j=2;j< num;j++) { if(num%j==0) { flag=1; break; } } }while(flag==1); sum=sum+num; } System.out.println("SUM OF SERIES="+sum); } }
Your email address will not be published. Required fields are marked *
Comment *
Name *
Email *
Website
Save my name, email, and website in this browser for the next time I comment.
Do you need help with your computer project or assignment?