Rabu, 27 Maret 2013 0 komentar

Remembrances for a certain pilot


Remembrances for a Certain Pilot / To Aru Hikūshi e no Tsuioku (とある飛空士への追憶) is a light novel series written by Inumura Koroku and illustrated by Morisawa Haruyuki. An animated movie was released in Japanese cinemas on 1 October 2011. The popular title in english is "The Princess and The Pilot".

Story Synopsis
The story revolves around Charles Karino, a Revaamu Empire mercenary aerial pilot who mans the twin-seater reconnaissance seaplane Santa Cruz. One day, he receives a preposterous assignment: to fly solo over 12,000 kilometers of enemy waters to protect a girl named Fana del Moral. Fana happens to be the next in line to the empire's throne and a girl possessing beauty "equal to 5,000 beams of light."
0 komentar

Utsuro no Hako to Zero no Maria


Story Synopsis
Utsuro no Hako to Zero no Maria, or The Empty Box and The Zeroth Maria, tells the sinister story of Kazuki Hoshino, who is almost madly attached to his everyday life, and his antagonist Aya Otonashi, who suddenly transfers into his class—for the 13,118th time. She majestically announces to “break” him, without paying heed to anyone else around them.
This is but the start of a dark roller coaster ride that turns the two against themselves, the people around them and the one who may be god. Read on as their relationship slowly changes and they go against their most basic values in their struggle against the world itself.
Selasa, 26 Maret 2013 0 komentar

LA C++ II

//Program String
#include <iostream.h>
#include <conio.h>
#include <stdio.h>

void main()
{
    char nama[20],kelas[5],npm[8];
    clrscr();
    cout<<"Input Nama  : "; gets(nama);
    cout<<"Input NPM   : "; gets(npm);
    cout<<"Input Kelas : "; gets(kelas);
   
    cout<<"\n\nNama anda "<<nama<<" dengan NPM "<<npm<<" dari kelas "<<kelas<<endl<<endl;
    cout<<"Nama   : "<<nama<<endl;
    cout<<"NPM    : "<<npm<<endl;
    cout<<"Kelas  : "<<kelas<<endl;
    getch();
}
0 komentar

LP C++ II





Soal :

1. Apa yang kalian ketahui tentang Operasi aritmatika ?
2. Sebutkan dan jelaskan operasi pada Operasi aritmatika ?

Bahasa pemrograman tidak akan terlepas dari yang namanya aritmatika dan logika. Operasi aritmatika dan logika tersebutlah yang membuat program menjadi cerdas dan dapat menghitung. Pada bahasa C terdapat beberapa operator aritmatika standar yaitu +, -, /, *, % .

0 komentar

LP Matlan 2 II


Soal :
1. Apa yang kamu ketahui tentang regulasi falsi ?
2. Algoritma pada Regulasi Falsi ?

False Position (Regulasi Falsi)
garis lurus sebagaipengganti f(x)
Prinsip
Di sekitar akar fungsi yang diperkirakan, anggap fungsi merupakan garis lurus. Titik tempat garis lurus itu memotong garis nol ditentukan sebagai akar ungsi.
0 komentar

LA Matlan 2 II

Program BISEKSI

uses crt;
label ulang;
var
x1,x2,x3,y1,y2,y3 : real;
i : integer;
ab : char;
begin
ulang :
clrscr;
writeln('Tentukan nilai akar dari persamaan f(x)=x^3+x^2-3x-3=0 dengan Metode Biseksi');
write( 'Masukan nilai x1 = ' );
readln( x1 );
y1 := x1 * x1 * x1 * + x1 * x1 - 3 * x1 -3;
writeln(' Nilai f(x1)= ',y1:0:4);
repeat
begin
write( 'Masukan nilai x2 = ');
readln(x2);
y2 := x2 * x2 * x2 + x2 * x2 - 3 * x2 - 3;
write(' Nilai f(x2)= ',y2:0:4);

Selasa, 19 Maret 2013 0 komentar

LA C++


//Program Biodata
#include <iostream.h>
#include <conio.h>

void main()
{
    clrscr();
    cout<< "Nama : Putra Aditya \n";

Senin, 18 Maret 2013 0 komentar

LP C++


Soal
1. Jelaskan statment I/O pada C++ ?
2. Bentuk umum statment I/O ?
3. Contoh program statment I/O ?


Jawaban
Statement input yang dapat digunakan beserta BUnya :

0 komentar

LA Matlan 2 I

Program Tabulasi :
uses crt;
label ulang;
var x,x1,x2,xa,xb,xc,y,y1,y2,ya,yb:real;
    i,j,k:integer;
    ab:char;
begin
     ulang:
     clrscr;
     writeln('Tentukan akar penyelesaian dengan metode tabulasi dari f(x)=x^3-7x+1');
     writeln;
     write('Masukkan nilai x1 = ');
     readln(x1);
     y1 := x1 * x1 * x1 - 7 * x1 + 1;
     writeln('  f(',x1:0:2,') = ',y1:0:4);
     repeat
     begin
          write('Masukkan nilai x2 = ');
          readln(x2);
          y2 := x2 * x2 * x2 - 7 * x2 + 1;
          writeln('  f(',x2:0:2,') = ',y2:0:4);
          writeln;
          writeln('Syarat (x1 * x2) < 0');
          write('x1 * x2 = ',y1 * y2:0:5);
          if (y1 * y2) < 0 then write('Nilai OK')
          else write('Nilai tidak sesuai');
          readln;
     end;
     until (y1 * y2) < 0;
     clrscr;
     k := 0;
     repeat
     begin

0 komentar

LP Matlan 2 I



1. Apa yang anda ketahui tentang Metode Biseksi ?
Metode biseksi merupakan salah satu metode tertutup untuk mentukan solusi akar dari persamaan non linear atau disebut juga metode pembagian Interval atau metode yang digunakan untuk mencari akar-akar persamaan nonlinear melalui proses iterasi, dengan prinsip utama sebagai
 
;