close

標題:

C++高手請問,陣列的方式計算 N^2

發問:

請用陣列的方式計算 N^2, 而且結果必須要前後對稱才輸出, 輸出如下: 1^2=1 2^2=4 3^2=9 11^2=121 22^2=484

 

此文章來自奇摩知識+如有不便請留言告知

最佳解答:

#include #include using namespace std; int main(int argc, char *argv[]) { int square;//1^2 ~ 10000^2 int num;//位數 int temp;//變數 int big,small;//最高位 最低位 int A[20];//存放square的值 按照每位數存放 for(int x=0;x=small) { if(A[big]!=A[small]) break; big--; small++; } if(big 2008-04-09 10:44:13 補充: http://rafb.net/p/7dd27k87.html 貼不下 我放在網頁上

其他解答:481517FD598DAD6B

arrow
arrow
    創作者介紹
    創作者 aptzmcv 的頭像
    aptzmcv

    aptzmcv的部落格

    aptzmcv 發表在 痞客邦 留言(0) 人氣()