Salman Posting
-
Author
salman-alfarisi -
Category
Documents
-
view
230 -
download
0
Embed Size (px)
Transcript of Salman Posting
-
8/2/2019 Salman Posting
1/22
Posting
Aktivitas
Sign In
Top of Form
Bottom of Form
Mencantumkan kode program di posting Anda, tolong ikuti aturan yang
sesuai, baca http://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-
kode-program-di-diskusiweb
Tolong pilih kategori sesuai, jenis posting (pertanyaan atau bukan) dan sertakan
tag/topik yang sesuai misal komputer, php, mysql, dll. Promosi atau posting tidak
pada tempatnya akan kami hapus.
Diskusi Pemrograman & IT
Aturan & Cara Menyisipkan Kode Program di Diskusiweb
adminJanuary 2011
Posts: 643
Kalau ingin posting kode dan tampil dengan format sintaks, gunakan tag pre
dengan atribut lang diisi dengan nama bahasa programnya.
Contoh:
< /pre>
Hasilnya akan jadi seperti berikut:
http://diskusiweb.com/discussionshttp://diskusiweb.com/activityhttp://diskusiweb.com/entry/signin?Target=discussion%2F39204%2Faturan-cara-menyisipkan-kode-program-di-diskusiwebhttp://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-kode-program-di-diskusiwebhttp://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-kode-program-di-diskusiwebhttp://diskusiweb.com/categories/tanya-jawabhttp://diskusiweb.com/profile/1/adminhttp://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-kode-program-di-diskusiweb/p1http://diskusiweb.com/profile/1/adminhttp://diskusiweb.com/http://diskusiweb.com/activityhttp://diskusiweb.com/entry/signin?Target=discussion%2F39204%2Faturan-cara-menyisipkan-kode-program-di-diskusiwebhttp://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-kode-program-di-diskusiwebhttp://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-kode-program-di-diskusiwebhttp://diskusiweb.com/categories/tanya-jawabhttp://diskusiweb.com/profile/1/adminhttp://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-kode-program-di-diskusiweb/p1http://diskusiweb.com/discussions -
8/2/2019 Salman Posting
2/22
Skatel_Linux_comJanuary 2011
Posts: 1,267
Perl. lang="perl"
$n = '3
apples';
$m = '2oranges';
print $n + $m;
Ruby. lang="ruby"
say['test'] = "saya cinta
ruby"
puts say.upcase
Python. lang="python"
>>> import math
>>> print('The value of PI is approximately
%5.3f.' % math.pi)
Javascript. lang="javascript"
for (i=0;i
-
8/2/2019 Salman Posting
3/22
ASP. lang="asp"
Pascal. lang="pascal"
procedure MWritei(const i:
Integer);
begin
Write(i);
end;
C++. lang="c"
#include
int main()
{
std::cout
-
8/2/2019 Salman Posting
4/22
Java. lang="java"
package org.kodejava.example.java.util;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
public class DateToString
{
public static void main(String[] args)
{
// Create an instance of SimpleDateFormat usedfor formatting
// the string representation of date
(month/day/year)
DateFormat df = new
SimpleDateFormat("MM/dd/yyyy");
// Get the date today using Calendar object.
Date today = Calendar.getInstance().getTime();
// Using DateFormat format method we can createa string
// representation of a date with the defined format.
String reportDate = df.format(today);
// Print what date is today!
System.out.println("Report Date: " + reportDate);
}
}
SQL. lang="sql"
SELECT *
INTO new_table_name
FROM old_tablename;
SELECT *
FROM a
INNER JOIN b
ON b.id = a.id_bWHERE a.active = 'yes' OR
-
8/2/2019 Salman Posting
5/22
a.active = TRUE
LIMIT 5;
Skatel_Linux_comJanuary 2011
Posts: 1,267
untuk C++ dan C# belum highlight tuh. :D langnya diisi apa? "ceples-ples" kah?
"cesarap" kah?
atau ini diskriminasi syntax highlight dalam bahasa pemrograman. [-(
yang C udah bisa, entah bener apa ngga. :D
lockheartJanuary 2011
Posts: 11
@Skatel_Linux_com : kren om... ahhahaa
bisa smua bhsa pemrograman ya om??
hihihi
:)
HusniJanuary 2011
Posts: 3,255
lang="vb"
Public Function TestMethod() As
Collection
Dim c As New Collection
For i As Integer = 0 To 10
c.Items.Add(i)
NextTestMethod = c
End Function
TestMethod()
lang="vbnet"
Public Class TestClass
Public Shared Function TestMethod() As Collection
http://diskusiweb.com/profile/8853/Skatel_Linux_comhttp://diskusiweb.com/discussion/comment/236432#Comment_236432http://diskusiweb.com/profile/27480/lockhearthttp://diskusiweb.com/discussion/comment/236677#Comment_236677http://diskusiweb.com/profile/Skatel_Linux_comhttp://diskusiweb.com/profile/3197/Husnihttp://diskusiweb.com/discussion/comment/236778#Comment_236778http://diskusiweb.com/profile/3197/Husnihttp://diskusiweb.com/profile/27480/lockhearthttp://diskusiweb.com/profile/8853/Skatel_Linux_comhttp://diskusiweb.com/profile/8853/Skatel_Linux_comhttp://diskusiweb.com/discussion/comment/236432#Comment_236432http://diskusiweb.com/profile/27480/lockhearthttp://diskusiweb.com/discussion/comment/236677#Comment_236677http://diskusiweb.com/profile/Skatel_Linux_comhttp://diskusiweb.com/profile/3197/Husnihttp://diskusiweb.com/discussion/comment/236778#Comment_236778 -
8/2/2019 Salman Posting
6/22
-
8/2/2019 Salman Posting
7/22
lang="cpp"
class TestClass {
public static stringTestMethod() {
return 'Test';
}
}
lang="xml"
-
8/2/2019 Salman Posting
8/22
lang="actionscript"
class com.test.TestClass extends MovieClip {
public function TestClass() {}public function onLoad() :Void {
var txtTest:TextField = this.createTextField("Test", 0,
0, 0, 100, 100);
txtTest.text = "Test";
}
}
lang="vbscript"
' gak
kerender
Dim x As
String
x = "Test"
alert(x)
lang="jsharp"
/* gak kerender */
class TestClass {
public static string
TestMethod() {
return 'Test';
}
}
lang="dos"
rem Tes Ping
@echo off
echo Sedang ngeping detik.com, tekan Ctrl C
untuk berhenti
ping detik.com -l 1 -t > detik.txt
lang="bash"
-
8/2/2019 Salman Posting
9/22
cd /var/www
echo "php_value magic_quotes_gpc 0"
> .htaccess
lang="asm"
org 100h
mov ah,
02
mov dl,
07h
int 21h
int 20h
ret
lang="matlab"
% Test
variable1 = 2;variable2 = 4;
variable3 = 8;
fprintf('v1: %f, v2: %f, v3: %f\n', variable1,
variable2, variable3);
fprintf(['This is a long string that',...
' will have to be split!',...
' Here are the variables: ',...
' variable1: %f, variable2: %f,',...' variable3: %f\n\n'], variable1,...
variable2, variable3);
HusniJanuary 2011
Posts: 3,255
Skatel_Linux_com said:
untuk C++ dan C# belum highlight tuh. :D langnya diisi apa? "ceples-ples" kah?"cesarap" kah?
http://diskusiweb.com/profile/3197/Husnihttp://diskusiweb.com/discussion/comment/236792#Comment_236792http://diskusiweb.com/profile/Skatel_Linux_comhttp://diskusiweb.com/profile/3197/Husnihttp://diskusiweb.com/profile/3197/Husnihttp://diskusiweb.com/discussion/comment/236792#Comment_236792http://diskusiweb.com/profile/Skatel_Linux_com -
8/2/2019 Salman Posting
10/22
atau ini diskriminasi syntax highlight dalam bahasa pemrograman. [-(
yang C udah bisa, entah bener apa ngga. :D
coba liat kodingan di atas om :D
n1coliusJanuary 2011
Posts: 6
bro, kalau coding kita yg di tag
itu panjang ke kanan kok tidak ada scrollnya ya?
n1coliusJanuary 2011
Posts: 6
kang admin, itu tag codenya masih kepotong yak kalau kodingnya memanjang ke
kanan gitu? apa gak lebih baik dikasih ada scrollnya? :)
loubattJanuary 2011
Posts: 2
Ane malah ga bisa enter..... -_-'
xyzzyJanuary 2011
Posts: 1
coba ah
#include
const char *s =
"abcdefghijklmnopqrstuvwxyz";
int main (void)
{
return(printf("%s\n", s) && *s++ &&
main());
http://diskusiweb.com/profile/3945/n1coliushttp://diskusiweb.com/discussion/comment/236879#Comment_236879http://diskusiweb.com/profile/3945/n1coliushttp://diskusiweb.com/discussion/comment/237015#Comment_237015http://diskusiweb.com/profile/27438/loubatthttp://diskusiweb.com/discussion/comment/237017#Comment_237017http://diskusiweb.com/profile/28320/xyzzyhttp://diskusiweb.com/discussion/comment/237242#Comment_237242http://diskusiweb.com/profile/28320/xyzzyhttp://diskusiweb.com/profile/27438/loubatthttp://diskusiweb.com/profile/3945/n1coliushttp://diskusiweb.com/profile/3945/n1coliushttp://diskusiweb.com/profile/3945/n1coliushttp://diskusiweb.com/discussion/comment/236879#Comment_236879http://diskusiweb.com/profile/3945/n1coliushttp://diskusiweb.com/discussion/comment/237015#Comment_237015http://diskusiweb.com/profile/27438/loubatthttp://diskusiweb.com/discussion/comment/237017#Comment_237017http://diskusiweb.com/profile/28320/xyzzyhttp://diskusiweb.com/discussion/comment/237242#Comment_237242 -
8/2/2019 Salman Posting
11/22
}
syuaaFebruary 2011
Posts: 199
Nah, trus klo mo insert images pake code apa tah?
adminFebruary 2011
Posts: 643
ya pake img src aja bisa
fanjavaakhmadFebruary 2011
Posts: 23
saunaartcreativityFebruary 2011
Posts: 57
LOCAL lcTes
lcTes = "Hello World.."
MESSAGEBOX(lcTes, 0+64,
"Info")
saunaartcreativityFebruary 2011
Posts: 57
untuk visual foxpro ga ada syntax coloring-nya om admin?
sonisanMarch 2011
Posts: 1
http://diskusiweb.com/profile/28204/syuaahttp://diskusiweb.com/discussion/comment/237416#Comment_237416http://diskusiweb.com/profile/1/adminhttp://diskusiweb.com/discussion/comment/237459#Comment_237459http://diskusiweb.com/profile/28371/fanjavaakhmadhttp://diskusiweb.com/discussion/comment/237850#Comment_237850http://diskusiweb.com/profile/12973/saunaartcreativityhttp://diskusiweb.com/discussion/comment/238049#Comment_238049http://diskusiweb.com/profile/12973/saunaartcreativityhttp://diskusiweb.com/discussion/comment/238050#Comment_238050http://diskusiweb.com/profile/29482/sonisanhttp://diskusiweb.com/discussion/comment/238703#Comment_238703http://diskusiweb.com/profile/29482/sonisanhttp://diskusiweb.com/profile/12973/saunaartcreativityhttp://diskusiweb.com/profile/12973/saunaartcreativityhttp://diskusiweb.com/profile/28371/fanjavaakhmadhttp://diskusiweb.com/profile/1/adminhttp://diskusiweb.com/profile/28204/syuaahttp://diskusiweb.com/profile/28204/syuaahttp://diskusiweb.com/discussion/comment/237416#Comment_237416http://diskusiweb.com/profile/1/adminhttp://diskusiweb.com/discussion/comment/237459#Comment_237459http://diskusiweb.com/profile/28371/fanjavaakhmadhttp://diskusiweb.com/discussion/comment/237850#Comment_237850http://diskusiweb.com/profile/12973/saunaartcreativityhttp://diskusiweb.com/discussion/comment/238049#Comment_238049http://diskusiweb.com/profile/12973/saunaartcreativityhttp://diskusiweb.com/discussion/comment/238050#Comment_238050http://diskusiweb.com/profile/29482/sonisanhttp://diskusiweb.com/discussion/comment/238703#Comment_238703 -
8/2/2019 Salman Posting
12/22
tes vb
dim a as
string
a="Hello
World"print a
AbdullahDefidulMarch 2011
Posts: 7
mw nanya ... :-/ Gimana cara membuat report di delphi tapi gak semua data yg
muncul...
contohnya kita mau data yg di report hanya dari tanggal sekian sampe tanggal
sekian....
tolong bantuin ya... [-O [:create]
respond_to :html, :json, :xml, :except => :create
def index
@raw_messages = current_convo.messages @messages = @raw_messages.collect{|m| {:uuid => m.uuid, :id =>
m.id, :text => m.body, :gravatar_url => m.owner.gravatar }}
respond_with @messages do |format|
format.html { redirect_to convo_url(current_convo) }
end
end
def create
@message = Message.create(:convo => current_convo, :owner =>
current_user, :body => params[:text], :uuid => params[:uuid])respond_with([current_convo, @message]) do |format|
http://diskusiweb.com/profile/29454/AbdullahDefidulhttp://diskusiweb.com/discussion/comment/239232#Comment_239232http://diskusiweb.com/discussion/comment/239232#Comment_239232http://diskusiweb.com/profile/1/adminhttp://diskusiweb.com/discussion/comment/240185#Comment_240185http://diskusiweb.com/profile/raw_messageshttp://diskusiweb.com/profile/messageshttp://diskusiweb.com/profile/raw_messageshttp://diskusiweb.com/profile/messageshttp://diskusiweb.com/profile/messagehttp://diskusiweb.com/profile/messagehttp://diskusiweb.com/profile/1/adminhttp://diskusiweb.com/profile/29454/AbdullahDefidulhttp://diskusiweb.com/profile/29454/AbdullahDefidulhttp://diskusiweb.com/discussion/comment/239232#Comment_239232http://diskusiweb.com/profile/1/adminhttp://diskusiweb.com/discussion/comment/240185#Comment_240185http://diskusiweb.com/profile/raw_messageshttp://diskusiweb.com/profile/messageshttp://diskusiweb.com/profile/raw_messageshttp://diskusiweb.com/profile/messageshttp://diskusiweb.com/profile/messagehttp://diskusiweb.com/profile/message -
8/2/2019 Salman Posting
13/22
format.js do
Socky.send({ :text => params[:text],
:uuid => params[:uuid],
:gravatar_url => params[:gravatar_url] }.to_json,
:channels => "convo_#{current_convo.id}" )
current_user.visit current_convo # make sure to reset stats for this
current convo
render :nothing => true
end
end
end
private
def current_convo
@current_convo ||= Convo.find(params[:convo_id])end
end
fatihurrMay 2011
Posts: 7
$name = "fatihurr";$kenal = $_POST["salam"];
if($kenal=="ya"){
echo "nama saya $name, salam kenal";
}else{
echo "kalo gitu aku aja deh yang kenalan, salam
kenal semua";
}
ijenk86July 2011
Posts: 78
klo mau masukin gambar di postingan atw di komen gmna mr.admin??
fanksengAugust 2011
Posts: 1
nyimak aja belum paham php.
http://diskusiweb.com/profile/current_convohttp://diskusiweb.com/profile/30408/fatihurrhttp://diskusiweb.com/discussion/comment/240275#Comment_240275http://diskusiweb.com/profile/27824/ijenk86http://diskusiweb.com/discussion/comment/240913#Comment_240913http://diskusiweb.com/profile/31446/fanksenghttp://diskusiweb.com/discussion/comment/241066#Comment_241066http://diskusiweb.com/profile/31446/fanksenghttp://diskusiweb.com/profile/27824/ijenk86http://diskusiweb.com/profile/30408/fatihurrhttp://diskusiweb.com/profile/current_convohttp://diskusiweb.com/profile/30408/fatihurrhttp://diskusiweb.com/discussion/comment/240275#Comment_240275http://diskusiweb.com/profile/27824/ijenk86http://diskusiweb.com/discussion/comment/240913#Comment_240913http://diskusiweb.com/profile/31446/fanksenghttp://diskusiweb.com/discussion/comment/241066#Comment_241066 -
8/2/2019 Salman Posting
14/22
storm2September 2011
Posts: 1
ga ngerti
RistonSeptember 2011
Posts: 1
salam kenal... saya baru bergabung di forum ini...
mr_idedSeptember 2011
Posts: 1
public class diskusiweb{
public static void main(String[]args){
String a="Salam Kenal admin, ayas dari PARE-KEDIRI";
String b="Terima kasih atas info-infonya sangat membantu
belajar program";
String c="See you again";
System.out.println("Assalamu'alaikum");
System.out.println(a);
System.out.println(b);
System.out.println(c);
}
}
rendy1287December 2011
Posts: 279
http://diskusiweb.com/profile/32002/storm2http://diskusiweb.com/discussion/comment/241380#Comment_241380http://diskusiweb.com/profile/32107/Ristonhttp://diskusiweb.com/discussion/comment/241497#Comment_241497http://diskusiweb.com/profile/32112/mr_idedhttp://diskusiweb.com/discussion/comment/241498#Comment_241498http://diskusiweb.com/profile/8812/rendy1287http://diskusiweb.com/discussion/comment/242089#Comment_242089http://diskusiweb.com/profile/8812/rendy1287http://diskusiweb.com/profile/32112/mr_idedhttp://diskusiweb.com/profile/32107/Ristonhttp://diskusiweb.com/profile/32002/storm2http://diskusiweb.com/profile/32002/storm2http://diskusiweb.com/discussion/comment/241380#Comment_241380http://diskusiweb.com/profile/32107/Ristonhttp://diskusiweb.com/discussion/comment/241497#Comment_241497http://diskusiweb.com/profile/32112/mr_idedhttp://diskusiweb.com/discussion/comment/241498#Comment_241498http://diskusiweb.com/profile/8812/rendy1287http://diskusiweb.com/discussion/comment/242089#Comment_242089 -
8/2/2019 Salman Posting
15/22
kok gak bisa :((
adminDecember 2011
Posts: 643
Ngetiknya di mode source code dong... Klik tanda di samping icon printer
sun4sonDecember 2011
Posts: 146
echo "test
doank";
Skatel_Linux_comDecember 2011
Posts: 1,267
Om @admin, kok template hightlight code-nya jadi jelek begini? backgroundkuning yang width-nya tidak 100%, ga da nomor barisnya juga.
. December 2011
Posts: 1,023
kreatip dikit gitu lho go ...
ambil cat item ama kuas, nah monitor nya elo coret-coret sendiri pake cat buat
nulis nomer baris
gitu aja pake komplen ke admin
;))
http://diskusiweb.com/profile/1/adminhttp://diskusiweb.com/discussion/comment/242093#Comment_242093http://diskusiweb.com/profile/31300/sun4sonhttp://diskusiweb.com/discussion/comment/242100#Comment_242100http://diskusiweb.com/profile/8853/Skatel_Linux_comhttp://diskusiweb.com/discussion/comment/242152#Comment_242152http://diskusiweb.com/profile/adminhttp://diskusiweb.com/profile/21333/.%20%20http://diskusiweb.com/discussion/comment/242153#Comment_242153http://diskusiweb.com/profile/21333/http://diskusiweb.com/profile/8853/Skatel_Linux_comhttp://diskusiweb.com/profile/31300/sun4sonhttp://diskusiweb.com/profile/1/adminhttp://diskusiweb.com/profile/1/adminhttp://diskusiweb.com/discussion/comment/242093#Comment_242093http://diskusiweb.com/profile/31300/sun4sonhttp://diskusiweb.com/discussion/comment/242100#Comment_242100http://diskusiweb.com/profile/8853/Skatel_Linux_comhttp://diskusiweb.com/discussion/comment/242152#Comment_242152http://diskusiweb.com/profile/adminhttp://diskusiweb.com/profile/21333/.%20%20http://diskusiweb.com/discussion/comment/242153#Comment_242153 -
8/2/2019 Salman Posting
16/22
Skatel_Linux_comDecember 2011
Posts: 1,267
Udah normal, ternyata pengaruh Opera Turbo. wkakakatrok. =))
. December 2011
Posts: 1,023
@mimin
miinnnn ... tuntut ajah tu yugo ke pulisi, tuduhan : pencemaran nama baik :))
adminDecember 2011
Posts: 643
Hayah ... ngitung aja baris ke berapa susah, bisa ngitung gaaak?? Ga bisa ngitung
jangan jadi programmer deeee ;))
mafia_hongkongDecember 2011
Posts: 7
tes yak gan
mafia_hongkongDecember 2011
Posts: 7
-
8/2/2019 Salman Posting
17/22
akhirnya
Skatel_Linux_comDecember 2011
Posts: 1,267
admin said:
Hayah ... ngitung aja baris ke berapa susah, bisa ngitung gaaak?? Ga bisa ngitung
jangan jadi programmer deeee ;))
saya ini memang bukan programmer min, saya ini tukang kritik programmer. :))
algeDecember 2011
Posts: 7
< /pre>
algeDecember 2011
Posts: 7
Private Sub cmdsimpan_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles cmdsimpan.Click
Dim sql As String
Dim strtemp As String = ""
Dim strvalue As String = ""
sql = "INSERT INTO pelanggan(kd_plg, nm_plg, alamat, noktp, hp, telp, fax) "
& _
http://diskusiweb.com/profile/8853/Skatel_Linux_comhttp://diskusiweb.com/discussion/comment/242271#Comment_242271http://diskusiweb.com/profile/adminhttp://diskusiweb.com/profile/33636/algehttp://diskusiweb.com/discussion/comment/242292#Comment_242292http://diskusiweb.com/profile/33636/algehttp://diskusiweb.com/discussion/comment/242293#Comment_242293http://diskusiweb.com/profile/33636/algehttp://diskusiweb.com/profile/33636/algehttp://diskusiweb.com/profile/8853/Skatel_Linux_comhttp://diskusiweb.com/profile/8853/Skatel_Linux_comhttp://diskusiweb.com/discussion/comment/242271#Comment_242271http://diskusiweb.com/profile/adminhttp://diskusiweb.com/profile/33636/algehttp://diskusiweb.com/discussion/comment/242292#Comment_242292http://diskusiweb.com/profile/33636/algehttp://diskusiweb.com/discussion/comment/242293#Comment_242293 -
8/2/2019 Salman Posting
18/22
"VALUES('" & txtkd_plg.Text & _
"','" & txtnm_plg.Text & "','" & txtalamat.Text & "','"
& txtnoktp.Text & "','" & txthp.Text & "," & _txttelp.Text & "','" & txtfax.Text & "')"
cmmd = New OleDbCommand(sql, cnn)
Dim x As Integer = cmmd.ExecuteNonQuery
If x = 1 Then
MessageBox.Show("DATA BERHASIL DISIMPAN")
sql = "SELECT * FROM pelanggan ORDER BY kd_plg DESC"
cmmd = New OleDbCommand(sql, cnn)
dreader = cmmd.ExecuteReader
If dreader.Read Then
strtemp = Mid(dreader.Item("kd_plg"), 3, 5)
Else
txtkd_plg.Text = "PL00001"
Exit Sub
End If
strvalue = Val(strtemp) + 1
txtkd_plg.Text = "PL" & Mid("0000", 3, 5 - strvalue.Length) & strvalue
txtnm_plg.Text = ""
txtalamat.Text = ""
txtnoktp.Text = ""
txthp.Text = ""
txttelp.Text = ""
txtfax.Text = ""
txtnm_plg.Focus()
Else
MessageBox.Show("GAGAL MENYIMPAN DATA")
End If
End Sub
greenzigotDecember 2011
Posts: 11
-
8/2/2019 Salman Posting
19/22
"Hello";
?>
Bisa euy...
den1993December 2011
Posts: 0
#include
#includevoid main()
{
printf("Den
ayunk")
getche();
}
feryardiantJanuary 6
Posts: 24
hendra21January 9
Posts: 1
Mas Admin, aq blm tau mau nulis apa ne, soal nya ane baru pengen belajar jadi
programer, tolong dibantu ya.
Se7enJanuary 10
http://diskusiweb.com/profile/33691/den1993http://diskusiweb.com/discussion/comment/242393#Comment_242393http://diskusiweb.com/profile/33867/feryardianthttp://diskusiweb.com/discussion/comment/242709#Comment_242709http://diskusiweb.com/profile/33909/hendra21http://diskusiweb.com/discussion/comment/242781#Comment_242781http://diskusiweb.com/profile/33918/Se7enhttp://diskusiweb.com/discussion/comment/242822#Comment_242822http://diskusiweb.com/profile/33918/Se7enhttp://diskusiweb.com/profile/33909/hendra21http://diskusiweb.com/profile/33867/feryardianthttp://diskusiweb.com/profile/33691/den1993http://diskusiweb.com/profile/33691/den1993http://diskusiweb.com/discussion/comment/242393#Comment_242393http://diskusiweb.com/profile/33867/feryardianthttp://diskusiweb.com/discussion/comment/242709#Comment_242709http://diskusiweb.com/profile/33909/hendra21http://diskusiweb.com/discussion/comment/242781#Comment_242781http://diskusiweb.com/profile/33918/Se7enhttp://diskusiweb.com/discussion/comment/242822#Comment_242822 -
8/2/2019 Salman Posting
20/22
Posts: 3
Ane Admin Baru gan... Ngk Tahu mo Nulis Apa_An ... Pengen Tau AJa gmna sih
Caranya pemograman OS Itu..??
Se7enJanuary 10
Posts: 3
Vanz_January 12
Posts: 1
salam kenal bang,, saya bru forum ini ..
mhon bantuan ny ya ..
makasiii bang
:)>-
solikinsolikenJanuary 19
Posts: 1
numpang nyimak
reycomFebruary 15
Posts: 4
SALAM PEACE BROOOO
ambaritaFebruary 22
Posts: 1
terimakasih saya sudah dapat bergabung. salam
http://diskusiweb.com/profile/33918/Se7enhttp://diskusiweb.com/discussion/comment/242825#Comment_242825http://diskusiweb.com/profile/33950/Vanz_http://diskusiweb.com/discussion/comment/242860#Comment_242860http://diskusiweb.com/profile/34096/solikinsolikenhttp://diskusiweb.com/discussion/comment/242973#Comment_242973http://diskusiweb.com/discussion/comment/242973#Comment_242973http://diskusiweb.com/profile/34780/reycomhttp://diskusiweb.com/discussion/comment/243343#Comment_243343http://diskusiweb.com/profile/34972/ambaritahttp://diskusiweb.com/discussion/comment/243603#Comment_243603http://diskusiweb.com/profile/34972/ambaritahttp://diskusiweb.com/profile/34780/reycomhttp://diskusiweb.com/profile/34096/solikinsolikenhttp://diskusiweb.com/profile/33950/Vanz_http://diskusiweb.com/profile/33918/Se7enhttp://diskusiweb.com/profile/33918/Se7enhttp://diskusiweb.com/discussion/comment/242825#Comment_242825http://diskusiweb.com/profile/33950/Vanz_http://diskusiweb.com/discussion/comment/242860#Comment_242860http://diskusiweb.com/profile/34096/solikinsolikenhttp://diskusiweb.com/discussion/comment/242973#Comment_242973http://diskusiweb.com/profile/34780/reycomhttp://diskusiweb.com/discussion/comment/243343#Comment_243343http://diskusiweb.com/profile/34972/ambaritahttp://diskusiweb.com/discussion/comment/243603#Comment_243603 -
8/2/2019 Salman Posting
21/22
erwinwahyudinFebruary 24
Posts: 2
import.java.io.*;
class cobabelajar {
public static void main{string[]args}{
system.out.println (" salam kenal" );
syatem.out.println(" salam belajar ");
system.out.println (" mohon ilmunya dibagibagi");
}
}
adaapanyaFebruary 25
Posts: 10
static void Main()
{
//C# is cool
string str = "this is C# code";
Action lambdaExp = () => Console.WriteLine("this is
lambda expression");
}
dennychristantraMarch 3
Posts: 1
static void Main()
{
//C# is cool
string str = "this is C# code";Action lambdaExp = () => Console.WriteLine("this is lambda expression");
UdhinkMarch 7
Posts: 1
-
8/2/2019 Salman Posting
22/22
$pingin = "blajar pemrograman n postgreSQL";
?>
12
Beri Tanggapan
Selamat datang,
It looks like you're new here. If you want to get involved, click one of these
buttons!
Sign InDaftar jadi Anggota
Mencantumkan kode program di posting Anda, tolong ikuti aturan yang sesuai, baca
http://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-kode-program-di-diskusiweb
Tolong pilih kategori sesuai, jenis posting (pertanyaan atau bukan) dan sertakan tag/topik yang
sesuai misal komputer, php, mysql, dll. Promosi atau posting tidak pada tempatnya akan kamihapus.
Diskusi Pemrograman & IT
Aturan & Cara Menyisipkan Kode Program di Diskusiweb
lonerzackyMarch 18
Posts: 6
radhit_pegeMarch 26
Posts: 2
< /pre>
http://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-kode-program-di-diskusiweb/p1http://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-kode-program-di-diskusiweb/p2http://diskusiweb.com/entry/signin?Target=discussion%2F39204%2Faturan-cara-menyisipkan-kode-program-di-diskusiweb%3Fpost%23Form_Bodyhttp://diskusiweb.com/entry/signin?Target=discussion%2F39204%2Faturan-cara-menyisipkan-kode-program-di-diskusiwebhttp://diskusiweb.com/entry/register?Target=discussion%2F39204%2Faturan-cara-menyisipkan-kode-program-di-diskusiwebhttp://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-kode-program-di-diskusiwebhttp://diskusiweb.com/categories/tanya-jawabhttp://diskusiweb.com/profile/35317/lonerzackyhttp://diskusiweb.com/discussion/comment/244367#Comment_244367http://diskusiweb.com/profile/30429/radhit_pegehttp://diskusiweb.com/discussion/comment/244721#Comment_244721http://diskusiweb.com/discussion/comment/244721#Comment_244721http://diskusiweb.com/profile/30429/radhit_pegehttp://diskusiweb.com/profile/35317/lonerzackyhttp://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-kode-program-di-diskusiweb/p1http://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-kode-program-di-diskusiweb/p2http://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-kode-program-di-diskusiweb/p2http://diskusiweb.com/entry/signin?Target=discussion%2F39204%2Faturan-cara-menyisipkan-kode-program-di-diskusiweb%3Fpost%23Form_Bodyhttp://diskusiweb.com/entry/signin?Target=discussion%2F39204%2Faturan-cara-menyisipkan-kode-program-di-diskusiwebhttp://diskusiweb.com/entry/register?Target=discussion%2F39204%2Faturan-cara-menyisipkan-kode-program-di-diskusiwebhttp://diskusiweb.com/discussion/39204/aturan-cara-menyisipkan-kode-program-di-diskusiwebhttp://diskusiweb.com/categories/tanya-jawabhttp://diskusiweb.com/profile/35317/lonerzackyhttp://diskusiweb.com/discussion/comment/244367#Comment_244367http://diskusiweb.com/profile/30429/radhit_pegehttp://diskusiweb.com/discussion/comment/244721#Comment_244721