I need help with a problem for class. the Problem is :
Q10: Write a for loop to sum the following series: (1 /2) + (2/3) + (3/4) + … + (49/50).
my code so far ispublic class forlooptest { public static void main(String[] args) { int a = 1; int b = 2; int x = (a/b); for (a=1, b=2;a>49 ; a++,b++){ x = (a/b)*50)); } } }
Any help would be greatly appreciated