美文网首页
编程第二天的日常

编程第二天的日常

作者: 一条有科研精神的程序狗 | 来源:发表于2016-12-24 13:47 被阅读0次

    变量

    1、 类型 变量名 = 值;
    2、对于银行和超市这类系统将小数运算转化成整数运算完成后再处理成小数。

    换算

    单位的换算

      1字节(Byte) = 8 比特(bit)
      千字节(KB)= 1024字节(Byte)
      兆字节(MB)= 1024 KB
      吉字节(GB) = 1024 MB
      太字节(TB)= 1024 GB
    

    练习 (四则运算)

    import java.util.Scanner;

    public class Hello2 {

      public static void main(String[] args) {
          //double a, b ;
          Scanner input = new Scanner(System.in);//变量名 input, scanner 扫描器,system.in 标准输入
                                                    
          System.out.print("a = ");                 
           double a = input.nextDouble();
          System.out.print("b = ");
           double b = input.nextDouble();
          input.close();
          
             System.out.printf("%f / %f = %.2f\n", a , b, a/b);
             System.out.printf("%f + %f = %.1f\n", a , b, a+b);
             System.out.printf("%f - %f = %.3f\n", a , b, a-b);
             System.out.printf("%f %% %f = %f\n", a , b, a%b);
             //System.out.println(areaRound(4));
             // %d 输出整数   %f 输出小数
    }
    

    }

    相关文章

      网友评论

          本文标题:编程第二天的日常

          本文链接:https://www.haomeiwen.com/subject/bzfamttx.html