Answers

✨ Best Answer ✨

あってます!

ありがとうございま🥰

す!

Jin

#include <stdio.h>

int main() {
printf("開始\n");
int x = 45, y = 10;
while (!x <= 0) {
y = y + x;
printf("X = %d\nY = %d\n", x, y);
x = x - 15;
}
printf("終了\n");
return 0;
}

Cで書くとこうなります。

なるほど…!
めっちゃ難しいですね😫

Post A Comment
Were you able to resolve your confusion?

Users viewing this question
are also looking at these questions 😉