標題:
字元陣列 Char Array 顯示名字
[打印本頁]
作者:
游東祥
時間:
2013-10-5 17:54
標題:
字元陣列 Char Array 顯示名字
本帖最後由 游東祥 於 2013-10-5 18:03 編輯
字元陣列 Char Array 顯示名字
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char myName[7] = "游東祥";
cout << "我的名字是 : " << myName << endl;
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2013-10-5 17:55
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
char myName[7] = "施伯叡";
cout << "我的名字是 : " << myName << endl;
system ("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-10-5 17:57
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
char myName[7] = "張峻瑋";
cout<<"我的名字是:"<<myName<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-10-5 17:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
char myName[7]="張彥承";
cout<<"我的名字是:"<<myName<<endl;
system("pause") ;
return 0;
}
複製代碼
作者:
謝佩君
時間:
2013-10-5 17:58
提示:
作者被禁止或刪除 內容自動屏蔽
作者:
謝典育
時間:
2013-10-5 18:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char myName [7] = "謝典育";
cout <<"我的名字是:"<< myName << endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-10-11 20:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
char myName [7] = "張郁庭";
cout << "我的名字是:" << myName << endl;
system ("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-10-11 20:27
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
char myName[7] = "周雍程";
cout << "我的名字是:" << myName << endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2