/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package smrt_3;
import javax.swing.JOptionPane;
/**
*
* @author User
*/
public class rataan1_2 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
String input=JOptionPane.showInputDialog("Masukkan Nilai Yang Akan Dihitung");
String []sementara=input.split(",");
//split : merubah string jadi array
int k = 0;
int index = 0;
double hasil = 0;
while(k<sementara.length){
hasil=hasil+Integer.parseInt(sementara[index]);
k++;
index++;
}
hasil=hasil/sementara.length;
System.out.println("Nilai rata rata dari "+input+" adalah "+hasil+"\n"
+ "Kompleksitas waktu dari "+input+" adalah "+sementara.length);
}
}
Posted by 17.31 and have
0
komentar
, Published at
Tidak ada komentar:
Posting Komentar