發表文章

目前顯示的是 10月, 2017的文章

在HTML中嵌入Youtube 只撥放音樂

參考資料: https://www.labnol.org/internet/youtube-audio-player/26740/ <div data-video="VIDEO_ID" data-autoplay="0" data-loop="1" id="youtube-audio"> </div> <script src="https://www.youtube.com/iframe_api"></script> <script src="https://cdn.rawgit.com/labnol/files/master/yt.js"></script> 播放測試(點擊播放)。

Java_CH6_HW1

import java.util.*; interface One { int someMethod(int a, int b); } interface Two { int anotherMethod(String s); }

Java_CH6_HW2

設有自然數n,d為該自然數各位數字,即 n = dkdk-1...d1 ,則有: n = dk·10k-1 + dk-1·10k-2 + ... + d2·10 + d1, 如果該自然數n滿足條件: n = dkk + dk-1k + ... + d2k + d1k.

C++ HW5-2 for WallPower

圖片
寫一個C++程式,輸入兩個3X3 A、B矩陣所有元素值後,計算出矩陣AB相乘結果。 參考輸出如下圖。

C++ HW4-4 (use define to compute circle area) for WallPower

圖片
編寫一個C++程式,寫一個巨集,輸入半徑值,求圓面積。 參考書出如下圖。

C++ HW5-1 for WallPower

圖片
有一個方程式如下,a[4]x^4+a[3]^3+a[2]x^2+a[1]x+a[0],請設計一個C++程式, 輸入一元四次方程式係數,以陣列儲存。再輸入變數值求結果。 參考輸出如下圖。 #include <iostream> using namespace std; int p(int x, int n) { int temp = 1; for (int i = 1; i <= n; i++) temp *= x; return temp; } int main() { int input[5], x, total = 0; for (int i = 0; i < 5; i++) { cout << "請輸入方程式中 " << i << "次項的係數 "; cin >> input[i]; } cout << "請輸入預計算的變數值 "; cin >> x; for (int i = 0; i < 5; i++) total += p(x, i) * input[i]; cout << "f(" << x << ")=" << total << endl; system("pause"); return 0; }

HTML 音樂撥放

<audio controls="controls" height="100" width="100" preload="auto" contenteditable="true" contextmenu="nodewnload" autoplay="autoplay"> <source src="路徑" type="audio/mp3"></source> </audio>

25 most commonly used Idioms and their Meaning 常用的英文成語

為了幫助各位更方便的學習英文成語 我把每個idiom都一一列出來 不管在哪裡都可以輕鬆的複習 除了沒網路以外哈哈 A Penny for Your Thoughts 英文解釋:Way of asking someone what they are thinking. 中文解釋:你在想什麼? Hold Your Horse 英文解釋:It means having Patience. 中文解釋:耐心

C++ HW4-4 HW4-5 for WallPower

圖片
排列組合中,從 n 個相異物取 r 個物件記做 C(n,r) ,其值可用數學遞迴定義如右: C(n,r) = C(n-1,r) + C(n-1,r-1) 。以此定義寫出一 C++ 程式,輸入正整數 n , r 的值求以此定義寫出一 C++ 程式求 C(n,r)= ? 參考輸出如下圖。

C++ HW4-3 for WallPower

圖片
設計一程式,內含計算球體體積函式 ( 公式: (4 π 𝑟 ^3)/3) 與表面積函式 ( 公式 :4 𝜋𝑟 ^2) 。輸入球體半徑後藉由呼叫函式求出體積與表面積,其中宣告 pi=3.14159 為全域的 const 常數。 參考輸出如下圖。

C++ HW4-2 for WallPower

圖片
利用函式呼叫方式,寫一個輸入正整數後,計算1+2+3+....+該整數之結果,並詢問是否繼續計算,若輸入1則繼續,0則結束程式。 參考輸出如下圖。

C++ HW4-1 for WallPower

圖片
寫一個程式,輸入任意正整數n後,呼叫自訂SQRT()函式,求出距離n最近之整數。 參考輸出如下圖。

Java_CH5_HW2

試設計一個程式,能計算浮點數的四則運算。 程式將按照 原 abstract ,extends 架構、加減乘除採 switch case 方式做判斷 、程式需作適度的修改。 請參考文件 :第五章作業參考文件.pdf 例 : 輸入運算符號 + 輸入兩數 30 8 30.0+ 8.0 兩數相加 = 38.0 輸入運算符號 – 30.0 – 8.0 兩數相減 = 22.0 輸入運算符號 * 30.0 * 8.0 兩數相乘 = 240.0

Java_CH5_HW1

試設計一個程式,列印出從整數1到20,但不含兩 位數偶數的階乘。 (參閱 Example 5.16. recusion .java ,下一張投影 片課本5.10習題。) 輸入 1 : 列印不含2位數偶數的1-20階乘。 輸入 2 : 列印不含2位數奇數的1-20階乘。 輸入 3 : 列印 “ 無法判斷”。

Arduino IDE for Visual Studio

圖片
用Arduino IDE簡直跟用記事本一樣...... 來試試看用Visual Studio開發Arduino吧。 要有Visual Studio (這裡使用Visual Studio 2017 Community 個人使用是免費的。 Visual Studio網址: https://www.visualstudio.com/zh-hant/?rr=https%3A%2F%2Fwww.google.com.tw%2F 還有Arduino IDE也是必要的。 Arduino Download網址: https://www.arduino.cc/en/Main/Software 再來就是Arduino IDE for Visual Studio Arduino IDE for Visual Studio網址: https://marketplace.visualstudio.com/items?itemName=VisualMicro.ArduinoIDEforVisualStudio

Java練習題 - 求s = a+aa+aaa+aaaa+aa...a值

題目:基本 求s = a+aa+aaa+aaaa+aa...a值 EX:2+22+222+2222+22222(使用迴圈 總共五個數相加) import java.util.*; public class Java_Num {