Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. public class Calc{
  2.  
  3.     private double kilograms;
  4.     private double grams;
  5.    
  6.    
  7.     public Calc(){
  8.        
  9.        
  10.     }
  11.    
  12.     public double killiogramConversion(double grams){
  13.    
  14.         double kilograms = grams / 1000;
  15.         return kilogrmas;        
  16.    
  17.     }
  18.    
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement