下面的程式,採用指標訪問的方式,從鍵盤給陣列a[n]輸入n個資料(n小於100),然後對元素值按逆序存放後輸出。請補充完整下面的程式。
#include
using namespace std;
const int n=100;
int main()
{int a[n],*p,*q;
cin>>n;
for(p=a; p<___ p>
___(2)___;
p=__(3)____;
q=___(4)_____;
while(p共n+1個整數,先輸入n值,再輸入n個整數
與輸入順序正好相反的n個整數
8 2 5 1 9 6 3 2 7
7 2 3 6 9 1 5 2**
#include using namespace std;
const int n=100;
int main()
{ int a[n],*p,*q,n;
cin>>n;
for(p=a; p
cin>>*p;
p=a;
q=a+n-1;
while(p
執行結果:
學習心得:
好好學習 天天向上
第十六周 OJ平台 有相同數字?
輸入兩個陣列中要存放的元素個數及元素值 不超過50個 判斷這兩個陣列中是否有相同的數字。在下面的程式基礎上完成 include using namespace std bool existthesame int a,int n1,int b,int n2 n1個資料的a陣列中和n2個資料的b陣列中是...
第十六周OJ平台Problem B 有相同數字?
輸入兩個陣列中要存放的元素個數及元素值 不超過50個 判斷這兩個陣列中是否有相同的數字。在下面的程式基礎上完成 include using namespace std bool existthesame int a,int n1,int b,int n2 n1個資料的a陣列中和n2個資料的b陣列中是...
第十六周 OJ平台 指標引出奇數因子
編寫函式 int fun int x,int pp 其功能是,求出x的所有奇數因子,並按照從小到大的順序放在pp指向的記憶體中,函式返回值為這些整數的個數。若x的值為30,陣列中的數為1,3,5,15,函式返回4。用下面的main 函式進行測試 int main int a 50 x,n cin x...