Posts

第三週作業 課本第1章的5個習題

Image
 一、請撰寫一程式,請使用者輸入一個圓的半徑r,計算出這個圓的面積與周長。

第2週作業 製作月曆左邊文字的部份

Image
 第一步 建立一個資料夾及子資料夾,名稱分別是:「網頁前端介面設計」及「Part 1 左欄 今日資料」,畫面如下: <pre><code class='html'> [My HTML goes here] </code></pre> 第二步: 第三步: 第四步: 最後的結果畫面:

Python程式設計實務 第二週 作業 Anaconda安裝與使用

Image
 1.先找到Anaconda的下載畫面: 最後,我們寫一支程式來測試:

Anaconda installation

Image
 

Delphi取得HTTP

uses   idHttp; procedure THeaderFooterForm.FormCreate(Sender: TObject); var   s: String;   HTTP: TIdHTTP; begin   HTTP := TIdHTTP.Create;   s:='http://192.192.246.169/';   memo1.Lines.Text := HTTP.Get(s); end;

Android+Google Map API v3 Geocoding(地址轉經緯度度

Image
package wells.example.googlemapexample; import android.app.Activity; import android.content.Context; import android.location.Criteria; import android.location.Location; import android.location.LocationListener; import android.location.LocationManager; import android.os.Bundle; import android.view.View; import android.view.WindowManager; import android.webkit.WebView; import android.webkit.WebViewClient; import android.widget.Button; import android.widget.EditText; import android.widget.LinearLayout.LayoutParams; import android.widget.Toast; public class MainActivity extends Activity {  private static final String MAP_URL = "file:///android_asset/googleMap.html";  private WebView webView;  private EditText addressText;  private Button submit;  private boolean webviewReady = false;   @Override  /** Called when the activity is first created. */  public void onCreate(Bundle savedInstanceState) {    super.onCreate(savedIns