Advertisement
stoyanoff

TEst

Jun 25th, 2020
1,300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. public class Test1 {
  2.     public static void main(String[] args) {
  3.  
  4.         double a = 41;
  5.  
  6.         double testOne = 0.80 * a;
  7.  
  8.         double testTwo = a - (a * 0.2);
  9.  
  10.         System.out.println(testOne);
  11.         System.out.println(testTwo);
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement