を見つけることができない私は、Javaプログラムを書いたが、私はエラーを取得しています:Javaのコンパイルエラーが:記号
ArrayMain.java:13: error: cannot find symbol
ar[c]=input.nextInt;
^
symbol: variable nextInt
location: variable input of type Scanner
コード:
import java.util.Scanner;
class ArrayMain
{
public static void main(String[] args)
{
Scanner input=new Scanner(System.in);
System.out.println("Enter the size:");
int c=input.nextInt();
int[] ar=new int[c];
System.out.println("Enter Element");
for(int i=0;i<c;i++)
{
ar[c]=input.nextInt;
}
array(ar,c);
}
public static void array(int[] ar,int c);
{
System.out.println("Elements in reverse order are");
for(int i=c;i>0;i--);
{
System.out.println(ar[c-1]);
}
}
}
私はそれを解決することができますか?
[の可能性の重複は、「シンボルを見つけることができません」コンパイルエラーは何を意味するのでしょうか? ](http://stackoverflow.com/questions/25706216/what-does-a-cannot-find-symbol-compilation-error-mean) – Li357
私は、あなたが構文に精通するために、JavaチュートリアルとJavaのドキュメントを見ることをお勧めしますof java: https://www.youtube.com/watch?v=WPvGqX-TXP0 – Oghli