-3

だから私はEclipseを使って学校のプロジェクトをやっています。トークン「+」で構文エラーが発生し続けます。++ が予想されます。

System.out.print ("End of Supplier transactions");
calcsuppliersummary();
System.out.print("The total interest of"+name+"is:" +interest+);
System.out.print("The supplier Ending Balance is:"+endbal+ );
}

エラーは System.out.print 行に表示されます。

4

1 に答える 1

1

andの+最後にある は、後で何かが追加されるとコンパイラに思わせます。印刷したいものの終わりであれば、最後に は必要ありません。2+2+=4 と書かないのと同じように (ただし、2+2=4 と書きます)、代わりに. を書きます。interestendbal+"The supplier Ending Balance is:"+endbal"The supplier Ending Balance is:"+endbal+

お役に立てれば!

ところで、Java は初めてですか?もしそうなら、本当に簡単に学べる本当に素晴らしい本がいくつかあります:)。

于 2013-07-24T03:05:32.543 に答える