I have added several comments to test but issue persist. Although not an actual error, I want to understand what actually is this, why it happened and how to resolve. TIA!
Missing a Javadoc comment.:
Solution.java, line: 13, column: 5
package com.codegym.task.task03.task0308;
/*
Product of 10 numbers
*/
public class Solution {
/*
Product of 10 numbers
*/
public static void main(String[] args) { // the main
/*
Product of 10 numbers
*/
int factorial = 1;
for (int i = 1;i < 11;i++) {
factorial *= i;
}
System.out.print(factorial);
}
}