import java.util.Scanner;
public class EnemyMessage {
public static void main(String[] args) {
System.out.println("enter the code:");
Scanner keyboard = new Scanner(System.in);
int key;
int i;
String code = keyboard.next();
for (key = 1; key <= 100; key++) {
for (i = 0; i < code.length(); i--) {
char c = code.charAt(i);
int n = (int) c;
System.out.println(n);
{
(char) c = (int) c - 32 + key + 127;
System.out.println(c);
}
}
}
}
}
這段代碼給了我兩個對我來說沒有多大意義的錯誤。據我所知,我沒有做過與我以前一直在做的事情不同的事情。需要關於編譯器錯誤的幫助
錯誤:
- 錯位的構造
- {」預計
添加java的語言標籤,以便其他人可以一目瞭然地知道您正在使用哪種語言。 – jpaugh
另外,我們無法看到的錯誤對我們毫無意義。如果你想得到一個體面的答案,你將不得不復制粘貼它們。 – jpaugh
@ExcelledProducts - 那可能>>是<<整個代碼。 –