Main.java:9: cannot find symbol
symbol : variable length
location: class java.lang.String
System.out.println(str1.length);
^
Main.java:10: cannot find symbol
symbol : variable length
location: class java.lang.String
System.out.println(str2.length);
^
Main.java:13: cannot find symbol
symbol : variable str1
location: class StrCmp
for(int i = 0 ; i < str1.length ; i++)
^
Main.java:15: cannot find symbol
symbol : variable str2
location: class StrCmp
for(int j = 0 ; j < str2.length ; j++)
^
Main.java:17: cannot find symbol
symbol : variable str1
location: class StrCmp
if (str1[i] == str2[j])
^
Main.java:17: cannot find symbol
symbol : variable str2
location: class StrCmp
if (str1[i] == str2[j])
^
Main.java:18: cannot find symbol
symbol : variable count
location: class StrCmp
count++;
^
Main.java:23: cannot find symbol
symbol : variable count
location: class StrCmp
return count;
^
8 errors