0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Apex Fundamentals for Developers モジュール

Last updated at Posted at 2024-12-19

使っているクラウドなどの小ネタ Advent Calendar 2024 20日目

Create Code with Apex

最後だけはコードを書かされます。

何もしないで検証ボタンをクリックすると...

We can't find any debug logs in your org. Make sure you've used System.debug statements and executed your code.

image.png

どうもデバックログを見ている感じですね。クラス名などの指定はないので匿名ウィンドウで実行しますか。

We can’t find the correct integer count in the debug log. Check your code for errors in syntax or formatting, and make sure you click "Check Challenge" immediately after running your code.

デバッグ ログに正しい整数カウントが見つかりません。コードの構文や書式にエラーがないか確認し、コードを実行したらすぐに「チャレンジを確認」をクリックしてください。

しまった1から10だったな。

image.png

Integer count = 1;
do {
    System.debug('Count: ' + count);
    count++;
}
while (count <= 10);

image.png

合格できました

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?