2016年6月3日 星期五


6/3 期末考 不重複


<html> <meta charset="UTF-8">  <head>   <title>期末2</title>  </head>  <body>   <script>    var balls = new Array(10);    var i=0,j=0,k=0;    for(i=0;i<10;i++)    {     balls[i]=i+1;    }    for(i=1;i<=1000;i++)    {     j=Math.floor(Math.random()*9);     k=Math.floor(Math.random()*9);     balls[49]=balls[j];     balls[j]=balls[k];     balls[k]=balls[49];    }    document.write(balls[0]+","+balls[1]+","+balls[2]);   </script>  </body> </html>

2016年6月2日 星期四

4/29  HTML顯示Hello world!的字串  文字檔改HTML

http://pclevin.blogspot.tw/2011/12/javascriptjavascript.html

貼在WORDPAD裡 檔名改test.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=BIG5">
<title>第一支javaScript</title>
</head>
<body>
<h2>document.write用法</h2>
 <Script type ="text/javascript">
  document.write("Hello world!!");
 </Script>
</body>
</html>




<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=BIG5">
<title>第一支javaScript</title>
</head>
<body>
<input type="checkbox" name="interest" value="單 打 獨 鬥" id="1"><label for="1">單 打 獨 鬥---------------</label><label for="demoradio_1">

<div class="qheader">
1) What is the difference between a jungle and a rain forest?</div>
<div class="qselections">
<input type="radio" value="a" name="question1">a) No difference. Simply two different ways in referring to the same thing.<br>
<input type="radio" value="b" name="question1">b) A jungle in general receives less rain than a rain forest.<br>
<input type="radio" value="c" name="question1">c) A jungle refers to the thickest area of a rain forest<br>
<input type="radio" value="d" name="question1">d) A jungle and a rain forest each contain their own group of distinct plants and animals.<br>
</div>

<br>

<h2>document.write用法</h2>
 <Script type ="text/javascript">
  document.write("Hello world!!");
 </Script>
</body>
</html>

2016年5月20日 星期五


5/20  HTML   4個選擇 畫圓餅圖


<html>
  <head>
    <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>

    <script type="text/javascript">

 var a,b,c;
 var n1,n2,n3,n4;

      google.charts.load('current', {'packages':['corechart']});
      google.charts.setOnLoadCallback(drawChart);
   
 function Ran(){

 n1 = 0;
 n2 = 0;
 n3 = 0;
 n4 = 0;

 var maxNum = 10;
      var minNum = 0;
      n1 = Math.floor(Math.random() * (maxNum - minNum + 1)) + minNum;
 n2 = Math.floor(Math.random() * (maxNum - minNum + 1)) + minNum;
 n3 = Math.floor(Math.random() * (maxNum - minNum + 1)) + minNum;
 n4 = Math.floor(Math.random() * (maxNum - minNum + 1)) + minNum;



 


     drawChart();
 }

      function add() {
   

      a=0;
      b=0;
      c=0;

 var radio1 = document.getElementsByName("v1");
 var radio2 = document.getElementsByName("v2");
 var radio3 = document.getElementsByName("v3");
 var radio4 = document.getElementsByName("v4");

   for(var i=0;i<radio1.length;i++)
   {
     if(radio1.item(i).checked==true)
     {
i = i+1
     alert(i);
if (i==1)
  {
a=a+1;
  }
if (i==2)
  {
b=b+1;
  }
if (i==3)
  {
c=c+1;
  }
  }}

     for(var i=0;i<radio2.length;i++)
   {
     if(radio2.item(i).checked==true)
     {
i = i+1
     alert(i);
if (i==1)
  {
a=a+1;
  }
if (i==2)
  {
b=b+1;
  }
if (i==3)
  {
c=c+1;
  }
  }}

     for(var i=0;i<radio3.length;i++)
   {
     if(radio3.item(i).checked==true)
     {
i = i+1
     alert(i);
if (i==1)
  {
a=a+1;
  }
if (i==2)
  {
b=b+1;
  }
if (i==3)
  {
c=c+1;
  }
}}

   for(var i=0;i<radio4.length;i++)
   {
     if(radio1.item(i).checked==true)
     {
i = i+1
     alert(i);
if (i==1)
  {
a=a+1;
  }
if (i==2)
  {
b=b+1;
  }
if (i==3)
  {
c=c+1;
  }
  }}

   

document.getElementById('c1').value=a;
document.getElementById('c2').value=b;
document.getElementById('c3').value=c;
document.getElementById('c4').value=d;




      drawChart();
      }

      function drawChart() {
     
       var data = google.visualization.arrayToDataTable([
          ['Task', 'Hours per Day'],
          ['A',  n1],
          ['B',  n2],
          ['C',  n3],
 ['D',  n4],
        ]);

        var options = {
          title: 'My Daily Activities'
        };

        var chart = new google.visualization.PieChart(document.getElementById('piechart'));

        chart.draw(data, options);
      }
    </script>
  </head>
  <body>

<h1>你選了什麼?</h1>
<input name="v1" type="radio" value="300年">300年        
<input name="v1" type="radio" value="400年">400年          
<input name="v1" type="radio" value="1000年">1000年
<br>
<h1>你選了什麼?</h1>
<input name="v2" type="radio" value="300年">300年        
<input name="v2" type="radio" value="400年">400年          
<input name="v2" type="radio" value="1000年">1000年
<br>
<h1>你選了什麼?</h1>
<input name="v3" type="radio" value="300年">300年        
<input name="v3" type="radio" value="400年">400年          
<input name="v3" type="radio" value="1000年">1000年
<br>
<h1>你選了什麼?</h1>
<input name="v4" type="radio" value="300年">300年        
<input name="v4" type="radio" value="400年">400年          
<input name="v4" type="radio" value="1000年">1000年
<br>


Section1:
 <input type="text" name="FirstName" id="c1" <br><br/>

Section2:
 <input type="text" name="address" id="c2" <br></br>

Section3:
 <input type="text" name="address" id="c3" <br></br>
Section4:
 <input type="text" name="address" id="c4" <br></br>

 <input type="button" value="submit" onclick="add()"/>
 <input type="button" value="隨機變數" onclick="Ran()"/>
    <div id="piechart" style="width: 900px; height: 500px;"></div>

  </body>
</html>

2016年5月13日 星期五

5/13  HTML  你選了什麼?






















<html>

  <head>
    <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
 
<script type="text/javascript">
      google.charts.load('current', {'packages':['corechart']});
      google.charts.setOnLoadCallback(drawChart);
      function drawChart() {

        var data = google.visualization.arrayToDataTable([
          ['Task', 'Hours per Day'],
          ['Work',     11],
          ['Eat',      2],
          ['Commute',  2],
          ['Watch TV', 2],
          ['Sleep',    7]
        ]);

        var options = {
          title: 'My Daily Activities'
        };

        var chart = new google.visualization.PieChart(document.getElementById('piechart'));

        chart.draw(data, options);
      }
    </script>
  </head>
  <body>
  <form action="post.php" method="post"  name="add" enctype="multipart/form-data" onSubmit="return check();" >
<h1>1、你選擇什麼?</h1>
<input name="v1" type="radio" value=1>A          
<input name="v1" type="radio" value=2>B          
<input name="v1" type="radio" value=3>C
</form>
<form action="post.php" method="post"  name="add" enctype="multipart/form-data" onSubmit="return check();" >
<h1>2、你選了什麼?</h1>
<input name="v2" type="radio" value="1">A
<input name="v2" type="radio" value="2">B          
<input name="v2" type="radio" value="3">C

</form>
<form action="post.php" method="post"  name="add" enctype="multipart/form-data" onSubmit="return check();" >
<h1>3、你選了什麼?</h1>
<input name="v3" type="radio" value="1">A          
<input name="v3" type="radio" value="2">B            
<input name="v3" type="radio" value="3">C
</form>
<form action="post.php" method="post"  name="add" enctype="multipart/form-data" onSubmit="return check();" >
<h1>4、你選了什麼?</h1>
<input name="v4" type="radio" value="1">A          
<input name="v4" type="radio" value="2">B            
<input name="v4" type="radio" value="3">C
</form>
    <div id="piechart" style="width: 900px; height: 500px;"></div>
  </body>
  <input type="button" value="送出" onclick=("drawChart")/>
</html>

2016年5月6日 星期五

5/6  HTML 加法


http://www.kangting.tw/2012/07/htmljavascriptcss.html




2016年4月22日 星期五

http://pclevin.blogspot.tw/2014/12/android-studio.html
JDK 6 以上的版本。
如果你要開發Android 5.0 以上,請使用JDK 7以上的版本。

圖1 Android Studio 下載

圖2 同意合約 -> 下載

圖3 下載需要一段時間,可以看一下安裝資訊

圖4 下載 後的檔案,執行此檔

圖5 安裝介面 -> Next 

圖6 選擇要安裝的項次 -> Next

圖7 Android SDK安裝說明 -> I Agree

圖8 安裝說明 -> I Agree

圖9 選擇安裝目錄位置
     Android Studio 安裝目錄
     Android SDK 安裝目錄


圖10 設定 Hardwar Accelerated Manager 使用RAM
please set the maximum anount of RAM available for the Intel Hardwar Accelerated Manager
(HAXM) to use for all x86 emulator instances.


圖11 Start Menu Folder . 本例不新增開啟選單

圖12 安執中..

圖13 安執中..

圖14 安執結束 -> Next

圖15 是否啟動Android Studio -> Finish

2016年4月15日 星期五


0219.png


package haha;
import java.sql.Connection;
import java.sql.DriverManager;
public class haha {
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        System.out.println("Hello! World!");
         Connection c = null;
          try {
           Class.forName("org.sqlite.JDBC");
           c = DriverManager.getConnection("jdbc:sqlite:test.db");
          } catch (Exception e) {
           System.err.println(e.getClass().getName() + ": " + e.getMessage());
           System.exit(0);
          }
          System.out.println("Opened database successfully");
    }
}