zoukankan      html  css  js  c++  java
  • 9.4作业

    9月4日java

    1.3

    public class Test{

        public static void main(String[] args){

           System.out.println("   ]");

           System.out.println("   ]");

           System.out.println("]  ]");

           System.out.println(" ]]");

    }

    }

    public class Test{

        public static void main(String[] args){

           System.out.println("   A");

           System.out.println("  A A");

           System.out.println(" AAAAA");

           System.out.println("A      A");

    }

    }

    public class Test{

        public static void main(String[] args){

           System.out.println("V     V");

           System.out.println(" V   V");

           System.out.println("  V V");

           System.out.println("   V");

    }

    }

    1.8

    public class Test{

        public static void main(String[] args){

           final double PI = 3.14;

           double radius = 5.5;

           System.out.println(2 * radius * PI);

           System.out.println(PI * radius * radius);

    }

    }

    1.12

    public class Test{

        public static void main(String[] args){

           double S = 24 * 1.6;

           double T = (1 * 60 + 40) * 60 + 35;

           double speed = S / T;

           System.out.println(speed);

    }

    }

  • 相关阅读:
    javascript之理解参数按值传递
    javascript之模仿jQuery实现框架雏形
    javascript之正则表达式学习笔记
    python常用算法了解
    爬虫_小结04
    爬虫_小结03
    爬虫_小结02
    爬虫_小结01
    IO 模型
    数据库,前端和框架须知
  • 原文地址:https://www.cnblogs.com/fm10086/p/7504088.html
Copyright © 2011-2022 走看看