Я не понимаю, почему я получаю эту ошибку.
Кто-нибудь может объяснить, в чем смысл этой ошибки? Что вызывает эту ошибку и как ее устранить.
Ошибка:
Инфра или ошибка предварительной проверки: Класс с именем не найден
Вот мой код :
import java.util.*;
class TestClass {
public static void main(String args[] ) throws Exception {
Scanner sc = new Scanner(System.in);
int n= sc.nextInt();
String str;
String tstr;
str=sc.nextLine();
tstr=sc.nextLine();
char [] s = new char[n];
char [] t = new char[n];
for(int i=0;i<str.length();i++){
s[i]=str.charAt(i);
}
for(int i=0;i<tstr.length();i++){
t[i]=tstr.charAt(i);
}
int count=0;
for(int i=0;i<n;i++){
if(((s[i]+13)%90)>t[i]){
count=count+t[i]-s[i];
}
else if(((s[i]+13)%90)<t[i]){
count=count+t[i]-s[i]+13;
}
}
System.out.println(count);
}
}