Select Menu

Search This Blog

Populer Posts Hari ini

Popular Posts

Powered by Blogger.

Lorem 1

adsense

" });

Circle Gallery

" });

News

" });
» » » source code Luas Segitiga dengan constructor class Di Java

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package constructorjava;
class LuasSegitiga{
    int panjang;
    int tinggi;
    int lebar;
   public void LuasSegitiga(int p,int l,int t){
       this.panjang=p;
       this.lebar=l;
       this.tinggi=t;
   }
   public int luas(){
       return (panjang*tinggi*lebar);
   }
}

/**
 *
 * @author andi m
 */
public class ConstructorJava {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        LuasSegitiga A=new LuasSegitiga();
        A.LuasSegitiga(4, 4, 4);
        System.out.println(A.luas());
    }
 
}

About andi

«
Next
Newer Post
»
Previous
Older Post

No comments

Leave a Reply