*** MENGHITUNG RATA RATA /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Praktik2; /** * * @author anik nurul */ public class Tugas1 { public static void main(String[]args){ int a,b,c,d,e,f; double x; double y; a=3; b=4; c=5; d=6; e=7; f=9; x=(a+b+c+d+e+f); //rumus dari rata-rata adalah jumlah data : banyak data y=x/6; //System.out.println("" + x); System.out.println("rata rata yang diperoleh = "+y); } } *** MENGHITUNG AKAR PANGKAT /* * To change this template, choose Tools | Templates * and open the...
Comments
Post a Comment