Mari kkita coba dalam contoh program…
Contoh Program Hasil F(X) = X² + 2X + 1
Silahkan buat class baru bernama
Lt15_PerhitunganX
, kemudian ikuti kode berikut:
public class Lt15_PerhitunganX{
public static void main (String[] args){
int x; //variabel
System.out.println("Hasil Dari f(x) = x² + 2x + 1 =");
for(x=1; x<=10; x++){ //perulangan dari 1 - 10
int f=(x*x)+(2*x)+1; // rumus
System.out.println("f(x) = ("+x+"*"+x+") + 2"+x+" + 1 ="+f); //hasil
}
}
}
Output :
0 Komentar