標題:
指標 (七) - 陣列 3
[打印本頁]
作者:
tonyh
時間:
2014-9-20 16:22
標題:
指標 (七) - 陣列 3
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[]={1,3,5,7,9};
int *nPtr=n;
cout<<*nPtr<<endl;
cout<<*(nPtr+=1)<<endl;
cout<<*(nPtr+=3)<<endl;
cout<<*(nPtr-=2)<<endl;
cout<<*(++nPtr)<<endl;
cout<<*(--nPtr)<<endl;
cout<<*nPtr<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2014-9-20 16:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[]={1,3,5,7,9};
int *nPtr=n;
cout<<*nPtr<<endl;
cout<<*(nPtr+=1)<<endl;
cout<<*(nPtr+=3)<<endl;
cout<<*(nPtr-=2)<<endl;
cout<<*(++nPtr)<<endl;
cout<<*(--nPtr)<<endl;
cout<<*nPtr<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得恩
時間:
2014-9-20 16:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[]={1,3,5,7,9};
int *nPtr=n;
cout<<*nPtr<<endl;
cout<<*(nPtr+=1)<<endl;
cout<<*(nPtr+=3)<<endl;
cout<<*(nPtr-=2)<<endl;
cout<<*(++nPtr)<<endl;
cout<<*(--nPtr)<<endl;
cout<<*nPtr<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2014-9-20 16:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[]={1,3,5,7,9};
int *nPtr=n;
cout<<*nPtr<<endl;
cout<<*(nPtr+=1)<<endl;
cout<<*(nPtr+=3)<<endl;
cout<<*(nptr-=2)<<endl;
cout<<*(++nPtr)<<endl;
cout<<*(--nPtr)<<endl;
cout<<*nPtr<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-9-20 16:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[]={1,3,5,7,9};
int *nPtr=n;
cout<<*nPtr<<endl;
cout<<*(nPtr+=1)<<endl;
cout<<*(nPtr+=3)<<endl;
cout<<*(nPtr-=2)<<endl;
cout<<*(++nPtr)<<endl;
cout<<*(--nPtr)<<endl;
cout<<*nPtr<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2014-9-20 16:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[]={1,3,5,7,9};
int *nPtr=n;
cout<<*nPtr<<endl;
cout<<*(nPtr+=1)<<endl;
cout<<*(nPtr+=3)<<endl;
cout<<*(nPtr-=2)<<endl;
cout<<*(++nPtr)<<endl;
cout<<*(--nPtr)<<endl;
cout<<*nPtr<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2014-9-20 16:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[]={1,3,5,7,9};
int *nPtr=n;
cout<<*nPtr<<endl;
cout<<*(nPtr+=1)<<endl;
cout<<*(nPtr+=3)<<endl;
cout<<*(nPtr-=2)<<endl;
cout<<*(++nPtr)<<endl;
cout<<*(--nPtr)<<endl;
cout<<*nPtr<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-9-20 16:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[]={1,3,5,7,9};
int *nPtr=n;
cout<<*nPtr<<endl;
cout<<*(nPtr+=1)<<endl;
cout<<*(nPtr+=3)<<endl;
cout<<*(nPtr-=2)<<endl;
cout<<*(++nPtr)<<endl;
cout<<*(--nPtr)<<endl;
cout<<*nPtr<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2014-9-20 16:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[]={1,3,5,7,9};
int *nPtr=n;
cout<<*nPtr<<endl;
cout<<*(nPtr+=1)<<endl;
cout<<*(nPtr+=3)<<endl;
cout<<*(nPtr-=2)<<endl;
cout<<*(++nPtr)<<endl;
cout<<*(--nPtr)<<endl;
cout<<*nPtr<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳人瑀
時間:
2024-10-5 16:56
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n[5]={1,3,5,7,9};
int *nptr=n;
cout<<*nptr<<endl;
cout<<*(nptr+=3)<<endl;
cout<<*(nptr-=2)<<endl;
cout<<*(++nptr)<<endl;
cout<<*(--nptr)<<endl;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2