標題:
11101_b17易
[打印本頁]
作者:
李泳霖
時間:
2024-6-30 17:43
標題:
11101_b17易
問下列程式碼輸出什麼?
#include<iostream>
#include<cstdlib>
using namespace std;
char s[] = {'a', 'b', 'a', 'b', 'a', 'a'};
void f(char x) {
for (int i = 0; i < 7; i++) {
if (s[i]=='c')
s[i] = s[i+1] ;
else s[i] = x;
}
}
int main() {
f('a');
for (int i = 0; i < 7; i++)
printf("%c", s[i]);
system("pause");
return 0;
}
複製代碼
本帖隱藏的內容需要回復才可以瀏覽
作者:
東緯
時間:
2024-10-27 19:13
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2