標題:
陣列 (七) - 電話簿
[打印本頁]
作者:
陳曜誌
時間:
6 天前 21:11
標題:
陣列 (七) - 電話簿
試以二維陣列的概念,輸出如下的電話簿。
本帖隱藏的內容需要回復才可以瀏覽
作者:
楊炘樺
時間:
昨天 10:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string data[5][2]={{"大雄","0980-454666"},{"技安","0911-333898"},{"宜靜","0922-999579"},{"阿福","0938-234567"},{"小叮噹","0911-864356"}};
cout<<"姓名\t電話\n";
cout<<"====================\n";
for(int i=0;i<5;i++)
{
cout<<data[i][0];
if(i==5)
cout<<" ";
else
cout<<'\t';
cout<<data[i][1]<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2