Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
どうすればよいかわかりません。
public int sum(int n) { }
職業はなんですか?YouTubeのビデオをいくつか見ましたが、役に立ちませんでした。
次のコードを使用します。
public int sum(int n) { int s=0; for(int i=2;i<=n;i+=2){ s+=i; } return s; }
これを試して :
public int sum(int n) { //WRITE SOME CODE }