@HentekoP (Yoshi N)posted at 2021-06-03more_horizAre you sure you want to delete the question?closeIf your question is resolved, you may close it.Leaving a resolved question undeleted may help others!We hope you find it useful!Close questionDelete questionC言語のwhile文Q&AC 解決したいこと C言語でwhile文を使って543210っていう表示をしたい 自分で試したこと ここに問題・エラーに対して試したことを記載してください。 調べてもいい情報が出なくてわからなかった 0subscribe
@KiritoXFposted at 2021-06-03more_horizそうですね。 int i = 5; while ( i >= 0 ) { printf("%d", i); i--; } これでOKと思います。 00Like
@sabataroikiriposted at 2021-06-04more_horizmain() { int n = 6; while(n--) printf("%d", n); } 笑 00Like