Monday, 24 October 2011
06:27
Buatlah algoritma yang dapat digunakan untuk mendetaksi angka yang di inputkan termasuk bilangan PRIMA atau BUKAN PRIMA
5
Catatanku: 2011
algoritma {menghitung bilangan prima} deklarasi; L,M,N : int; algoritma read(N); if N == 2 == 0 <-- end; else if N mod 2 == 0 ...
06:23
Buat algoritma dgn flowchart untuk mencetak gambar segitiga sebanyak N baris, dengan N adalah diinput dari keyboard
Algoritma
{Menghitung bintang berurutan}
deklarasi
N,K,L = 1 : int;
algoritma
loop(L) to (N) do;
read(N,L);
k<-- L*(*);
if else back to loop;
else
cetak(k);
{Menghitung bintang berurutan}
deklarasi
N,K,L = 1 : int;
algoritma
loop(L) to (N) do;
read(N,L);
k<-- L*(*);
if else back to loop;
else
cetak(k);
Label :
C++
5
Catatanku: 2011
Algoritma {Menghitung bintang berurutan} deklarasi N,K,L = 1 : int; algoritma loop(L) to (N) do; read(N,L); k<-- L*(*); if else...
#include <iostream>
#include <stdio.h>
int main()
{
int i;
int k=0;
for(i = 1;i<=20;i++)
{
if ( i%2 ==0)
{
k=k+i;
}
}
printf("%d",k);
getchar();
return 0;
}
Label :
C++
5
Catatanku: 2011
#include <iostream> #include <stdio.h> int main() { int i; int k=0; for(i = 1;i<=20;i++) { if ( i%2...
#include <iostream>
#include <stdio.h>
int main()
{
int i;
for (i = 1;i<=20;i++)
{
if ( i%2 ==0)
{
printf("%d\n",i);
}
}
getchar();
return 0;
}
Label :
C++
5
Catatanku: 2011
#include <iostream> #include <stdio.h> int main() { int i; for (i = 1;i<=20;i++) { if ( i%2 ==0) ...
Monday, 10 October 2011
NAMA : NOVI FAIRUZ ZUHRIA
NIM : 11.01.53.0069
KELOMPOK : B1
Label :
5
Catatanku: 2011
NAMA : NOVI FAIRUZ ZUHRIA NIM : 11.01.53.0069 KELOMPOK : B1
hmmm, numpang ngeshare poem yak???
kalo jelek ya gak usah di baca, hehhe
i'm dying to reach you, but my hand couldn't reach that far
i'm bleeding to have you, but my soul doesn't deserve for it
i'm crying to hold you, but this distance take us apart
i wanna scream, but it wouldn't make better
i don't know what todo
you'he been away, far far away
the only thing that i can do is just dancing with your shadow,
i never thought that you're just my fantassy
i can't hold you
i can't see you even you are in front of me
kalo jelek ya gak usah di baca, hehhe
i'm dying to reach you, but my hand couldn't reach that far
i'm bleeding to have you, but my soul doesn't deserve for it
i'm crying to hold you, but this distance take us apart
i wanna scream, but it wouldn't make better
i don't know what todo
you'he been away, far far away
the only thing that i can do is just dancing with your shadow,
i never thought that you're just my fantassy
i can't hold you
i can't see you even you are in front of me
Label :
Puisi
5
Catatanku: 2011
hmmm, numpang ngeshare poem yak??? kalo jelek ya gak usah di baca, hehhe i'm dying to reach you, but my hand couldn't reach that...
SOAL:
— Sebuah mobil bergerak dengan kecepatan tetap v km/jam. Jika mobil tersebut berjalan selama t jam, tuliskan algoritma untuk menghitung jarak yang sudah ditempuh mobil (dalam km). Algoritma harus mampu membaca v dan t, dan penghitungan jarak menggunakan rumus s = v*t, kemudian mencetak jarak tersebut.
— Tuliskan dalam flowchart, Pseudoceode dan transformasikan dalam bahasa C++.
JAWAB:
PSEUDOCODE
{ ////////////////////////////////////////
Algoritma Menghitung Jarak
////////////..///////////////////////// }
Deklarasi:
s, v, t: float;
Algoritma:
mulai
read(v,t);
s<==v*t;
cetak(s);
selesai
BAHASA C
/* Program Menghitung Jarak */
#include <stdio.h>
#include <stdlib.h>
int main()
{
float s,v,t;
printf("Masukkan kecepatan mobil [dalam km/jam] : ");
scanf("%f",&v);
printf("Masukkan lama waktu mobil berjalan [dalam jam] : ");
scanf("%f",&t);
s=v*t;
printf("Jadi mobil tsb telah menempuh jarak sepanjang : %f km",s);
return 0;
}
Label :
C++
5
Catatanku: 2011
SOAL: — Sebuah mobil bergerak dengan kecepatan tetap v km/jam. Jika mobil tersebut berjalan selama t jam, tuliskan algoritma untuk menghitu...
Subscribe to:
Posts (Atom)
Novi FZ
08999226457