標題:
11101_b8
[打印本頁]
作者:
李泳霖
時間:
2024-6-30 17:38
標題:
11101_b8
本帖最後由 李泳霖 於 2024-10-27 19:23 編輯
詢問輸出結果
#include<iostream>
#include<cstdlib>
using namespace std;
void func(int f) {
while (f) {
f = f - 1;
int a = 4;
for (int i = 1; i <= a; i++) {
for (int j = 0; j < i; j++)
printf("%d", i);
printf("\n");
}
for (int i = a - 1; i >= 1; i--) {
for (int j = 0; j < i; j++)
printf("%d", i);
printf("\n");
}
if (f) printf("\n");
}
}
int main() {
func(2);
system("pause");
return 0;
}
複製代碼
本帖隱藏的內容需要回復才可以瀏覽
作者:
東緯
時間:
2024-10-27 19:26
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2