C ++ 複製. // do_while_statement.cpp #include <stdio.h> int main() { int i = 0; do { printf_s("\n%d",i++); } while (i < 3); } ...
確定! 回上一頁