科目名稱:資訊系統 與網路導論 | 開課系所:資訊工程 學系 | 任課教師 |
吳坤熹 |
||
系所別: |
年級: |
學號: |
姓名: |
考試日期 |
2009.12.2 |
(考試時間: 14:10-14:30)
// Matrix
#include <iostream>
using std::cout;
using std::endl;
int main()
{
int value[10] = { 1, 3, 5, 7, 9};
int i = 0;
for (i=0; i<10; i += 2)
value[i] = i;
cout << value[2] << "\t" << value[3] << endl;
}
#include <iostream>
using std::cout;
using std::endl;
int main()
{
char str1[10] = "NCNU";
char str2[10];
int i=0, j;
while (str1[i] != '\0')
i++;
for (j=0, --i; i>=0; i--, j++)
str2[j] = str1[i];
str2[j] = '\0';
cout << str1 << endl;
cout << str2 << endl;
}
using std::cout;
using std::endl;
int main()
{
int value = 10;
int* pvalue = &value;
value += 5;
cout << value+*pvalue << endl;
}