1.在螢幕上輸出以下圖案:
****
*****
*******
*********
***********
*************
***********
*********
*******
*****
****
* 下面是**:
#include
#include
int main()
printf("\n");
}for (i = 0; i <= 5; i++)
printf("\n");
}system(「pause」);
return 0;
}2.求出0~999之間的所有「水仙花數」並輸出。
「水仙花數」是指乙個三位數,其各位數字的立方和確好等於該數本身,如;153=1+5+3?,則153是乙個「水仙花數」。
/*在數論中,水仙花數(narcissistic number)也稱為自戀數、自冪數、阿姆斯壯數或阿姆斯特朗數(armstrong number),是指一n位數,其各個數之n次方和等於該數。
例如153、370、371及407就是三位數的水仙花數,其各個數之立方和等於該數:
153 = 1^3 + 5^3 + 3^3。
370 = 3^3 + 7^3 + 0^3。
371 = 3^3 + 7^3 + 1^3。
407 = 4^3 + 0^3 + 7^3。
*/下面是**:
#include
#include
#include
int main()
}system(「pause」);
return 0;
}求sn=a+aa+aaa+aaaa+aaaaa的前5項之和,其中a是乙個數字,
例如:2+22+222+2222+22222
下面是**:
#define _crt_secure_no_warnings
#include
#include
#include
int main()
printf(「sum=%d\n」,sum);
system(「pause」);
return 0;
}
Python小練習 持續更新
最近一直在學習python,這些小練習有些是書上的,有些是別人部落格上的!1.題目1 給乙個字串,統計其中的數字 字母和其他型別字元的個數 比如輸入 124mid 輸出 數字 3,字母 3,其他 2。1 coding utf82 1.題目13 給乙個字串,統計其中的數字 字母和其他型別字元的個數 4...
PHP 小練習題持續更新
php三元運算子 var 的值是多少?var true 1 false 2 3 echo var 輸出2 結果分析 資料型別 下面哪種型別的變數是浮點數,比如 3.14159 或 49.1?double integer 整型,double 浮點型,boolean 布林型,string 字串 檔案操作...
程式設計小練習
檔名稱 test.cpp 完成日期 2016年4月11日 問題描述 ip位址 在日常網路環境中,基本是都在使用b,c兩大類位址,而ade這3類位址都不打可能被使用到。include using namespace std class ip ip位址共4位元組,或者看成結構體所指4部分 unsigne...