java列印正弦曲線樣本_java

來源:互聯網
上載者:User

複製代碼 代碼如下:

/*
 * 繪製0°到360°的正弦曲線
 * 分兩種情形,y>0和y<=0進行繪製
 * 每種情形中要考慮每行列印兩個"*"字元
 * 並在列印第二個"*"字元後換行
 */
package hundred;
import java.lang.Math;
public class SinTest {
    public static void main(String[] args){
     //y為列方向,值從1到-1,步長為0.1
     for (double y = 1;y>=-1;y-=0.1){  
        //計算出y對應的弧度,乘10為圖形放大倍數
        int m = -(int)(Math.asin(y)*10);
           if (y > 0){ 
              for (int x = 1;x <1-m;x++){
               System.out.print(" ");
              } 
                  System.out.print("*");
              //31為10*π的整數部分,列印出來的曲線比較順眼
              for (int x =1;x <31+2*m;x++){
                  System.out.print(" ");
                 }  
                  System.out.println("*"); 
        } 
           if (y <= 0){   
                 for (int x = 1;x < 32+m;x++){
                  System.out.print(" ");
                 } 
                     System.out.print("*");
                 //31為10*π的整數部分,列印出來的曲線比較順眼
                 for (int x = 1;x < 31-2*m;x++){
                  System.out.print(" ");
                 } 
                     System.out.println("*");
            }
         }
    }
}


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.