Bug #3594
openDF001-DF006
0%
Description
Defect ID: DF001
Defect Name: Incorrect declaration
Line Number: 3
Defect Description: variable n and p were not declared
Fixing Solution: add "int" before n and before p
Defect ID: DF002
Defect Name: For loop issue
Line Number: 9
Defect Description: lack of condition of i
Fixing Solution: for(int i = 0 ;i < m ;i++)
Defect ID: DF003
Defect Name: For loop issue
Line Number: 10
Defect Description: lack of condition of j
Fixing Solution: for(int j = 0 ;j < p ;i++)
Defect ID: DF004
Defect Name: for loop issue
Line Number: 11
Defect Description: lack of condition of k
Fixing Solution: for(int k = 0 ;k < n ;i++)
Defect ID: DF005
Defect Name: Equal typing
Line Number: 4
Defect Description: "=" is used to compare
Fixing Solution: use "==" instead of "="
Defect ID: DF006
Defect Name: Naming convention
Line Number: 1
Defect Description: First letter of class name is not capitalized
Fixing Solution: capitalize first letter of class name
No data to display