Untuk itu, proses pembuatannya
bisa Anda lihat pada video dokumentasi berikut :
Kumpulan catatan belajar mahasiswa Program Alih Jenjang D3 ke D4 Teknologi Media Digital - STEI ITB Batch 6 Th. 2012/2013
Showing posts with label Hello World. Show all posts
Showing posts with label Hello World. Show all posts
Thursday, November 22, 2012
Membuat Project Sederhana (Hello World) - Bahasa C++
Project hello world merupakan
salah satu project yang populer untuk setiap bahasa pemograman. Di sini juga
kita akan mengenal lebih jauh tentang bahasa C++ melalui pembuatan project
sederhana Hello World ini.
Saturday, October 27, 2012
Revisi Pembuatan Helloworld dengan bahasa pemrograman C
Nama: Wildan Maulana Yusuf
Jurusan: TMD..
assalam..
mohon maaf sebelumnya..pada kesempatan kali ini saya lampirkan revisi dari pada pembuatan program hello world karena pada pembuatan tutorial kemarin ada kesalahan dalam format pengiriman..yang saya kirim adalah ke blog yang lain bukan pada competence progres..
maka dari itu ini saya lampirkan kembali tugas tersebut.
source codenya adalah sebagai berikut:
#include <stdio.h> //mengakses ibrary
#include <stdlib.h>
/*
wildan maulana yusuf //komentar
*/
int main (void)
{ //tanda pembuka perintah
printf("hello word\n"); //perintah output
system("pause"); //salah satu fungsi pada library stdlib.h
return (0); //nilai balikan fungsi main() adalah 0
} //tanda tutup perintah
dan setelah source code itu di jalankan, maka akan muncul program sebagai berikut:
adapun video tutorialnya adalah sebagai berikut:
dan alamat video di youtube adalah sebagai berikut:
http://www.youtube.com/watch?v=h1Kk35yGHKQ&feature=youtu.be
Jurusan: TMD..
assalam..
mohon maaf sebelumnya..pada kesempatan kali ini saya lampirkan revisi dari pada pembuatan program hello world karena pada pembuatan tutorial kemarin ada kesalahan dalam format pengiriman..yang saya kirim adalah ke blog yang lain bukan pada competence progres..
maka dari itu ini saya lampirkan kembali tugas tersebut.
source codenya adalah sebagai berikut:
#include <stdio.h> //mengakses ibrary
#include <stdlib.h>
/*
wildan maulana yusuf //komentar
*/
int main (void)
{ //tanda pembuka perintah
printf("hello word\n"); //perintah output
system("pause"); //salah satu fungsi pada library stdlib.h
return (0); //nilai balikan fungsi main() adalah 0
} //tanda tutup perintah
dan setelah source code itu di jalankan, maka akan muncul program sebagai berikut:
adapun video tutorialnya adalah sebagai berikut:
dan alamat video di youtube adalah sebagai berikut:
http://www.youtube.com/watch?v=h1Kk35yGHKQ&feature=youtu.be
Tuesday, October 23, 2012
Competency Progress: Hello TMD and calculate area of tripezium
Dear Dr.
Name: Sean Vandet
Major: Modul1
+ print Hello TMD
#include<stdio.h> //library of input and output standard
#include<stdlib.h> //library of system("pause")
int main(void) //method main() for compile the program
{
printf("Hello TMD!.\n"); //output on screen
system("pause"); //pause the system
return 0; //return value to user
}
link to youtube:
http://www.youtube.com/watch?v=JbZM64dnrkk&feature=youtu.be
+ Calculate area tripezium
#include<stdio.h> //library of input and output standard
#include<stdlib.h> //library of system("pause")
int main(void) //main() method for compile the program
{
float a, b, h, areaTripezium; //declare variable (float)
printf("Please enter the number: \n"); //show output on screen
printf("a is: ");
scanf("%f",&a); //input the data from keyboard
printf("b is: ");
scanf("%f",&b);
printf("h is: ");
scanf("%f",&h);
areaTripezium = h * (a + b) /2; //calculate area of Tripezium
printf("Area of Tripezium is: %f\n", areaTripezium);
system("pause"); //pause the system
return 0; //return value to the user (false)
}
link to youtube:
http://www.youtube.com/watch?v=JbZM64dnrkk&feature=youtu.be
sorry Dr. that i sand you late because my internet so slow show i attach file it so long time
Name: Sean Vandet
Major: Modul1
+ print Hello TMD
#include<stdio.h> //library of input and output standard
#include<stdlib.h> //library of system("pause")
int main(void) //method main() for compile the program
{
printf("Hello TMD!.\n"); //output on screen
system("pause"); //pause the system
return 0; //return value to user
}
link to youtube:
http://www.youtube.com/watch?v=JbZM64dnrkk&feature=youtu.be
+ Calculate area tripezium
#include<stdio.h> //library of input and output standard
#include<stdlib.h> //library of system("pause")
int main(void) //main() method for compile the program
{
float a, b, h, areaTripezium; //declare variable (float)
printf("Please enter the number: \n"); //show output on screen
printf("a is: ");
scanf("%f",&a); //input the data from keyboard
printf("b is: ");
scanf("%f",&b);
printf("h is: ");
scanf("%f",&h);
areaTripezium = h * (a + b) /2; //calculate area of Tripezium
printf("Area of Tripezium is: %f\n", areaTripezium);
system("pause"); //pause the system
return 0; //return value to the user (false)
}
link to youtube:
http://www.youtube.com/watch?v=JbZM64dnrkk&feature=youtu.be
sorry Dr. that i sand you late because my internet so slow show i attach file it so long time
Tutorial Program Menghitung Luas Trapesium dengan menggunakan bahasa C
Berikut video tutorial program menghitung luas trapesium dengan menggunakan bahasa C dari modul I
Selamat mengikuti
Listing Program
Pada postingan saya sebelumnya telah diperlihatkan video/tutorial membangun aplikasi sederhana menggunakan pemograman C++ dengan visual studio. dan berikut adalah Syntax programnya :
1. Program Hello World
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
printf("Hello World");
system("pause");
return(0);
}
Output :
2. Program menghitung Luas Trapesium
#include <stdio.h>
#include <stdlib.h>
float a, b, t, hasil;
int main (void)
{
printf("masukan sisi ke-1:");
scanf_s("%f",&a);
printf("masukan sisi ke-2:");
scanf_s("%f",&b);
printf("masukan tinggi trapesium :");
scanf_s("%f",&t);
hasil = ((a+b)*t)/2;
printf("Luas Trapesium = %f \n", hasil);
system("pause");
return 0;
}
Output :
1. Program Hello World
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
printf("Hello World");
system("pause");
return(0);
}
Output :
2. Program menghitung Luas Trapesium
#include <stdio.h>
#include <stdlib.h>
float a, b, t, hasil;
int main (void)
{
printf("masukan sisi ke-1:");
scanf_s("%f",&a);
printf("masukan sisi ke-2:");
scanf_s("%f",&b);
printf("masukan tinggi trapesium :");
scanf_s("%f",&t);
hasil = ((a+b)*t)/2;
printf("Luas Trapesium = %f \n", hasil);
system("pause");
return 0;
}
Output :
[ Pemrograman C ] Mencari Nilai Luas Trapesium
Kali ini saya akan mengupload tutorial tentang luas trapesium secara detail..
untuk videonya, langsung cek dibawah.
untuk videonya, langsung cek dibawah.
Write program to runWrite program Area Of Trapezium with program Microsoft visual C++
Name : Om Chanlyta
Major : TMD
Hello again this video below is show about create program for compile and run Area of Trapezium .
below is my link to video on youtube:
http://www.youtube.com/watch?v=lh6uOJgbHy0&feature=youtu.be
Major : TMD
Hello again this video below is show about create program for compile and run Area of Trapezium .
http://www.youtube.com/watch?v=lh6uOJgbHy0&feature=youtu.be
Write program to run show Area of Trapezium with Microsoft Visaul
Name : Om Chanlyta
Major : TMD
Hello lechure and everyone, This video below is show about create program for compile and run show "Hello World" .
Below is my link
http://www.youtube.com/watch?v=iC0FpiTFRY4&feature=youtu.be
Major : TMD
Hello lechure and everyone, This video below is show about create program for compile and run show "Hello World" .
Below is my link
http://www.youtube.com/watch?v=iC0FpiTFRY4&feature=youtu.be
Tugas II Area of Trapezoid
Name : Phirum Tan
Major : Tiknik Media Digital
Hello!Teacher. I was upload video how to calculate area of Trapezoid already so this is my link to watch on youtube http://youtu.be/ezazZUlHuBU
Thanks Teacher for watching.
Major : Tiknik Media Digital
Hello!Teacher. I was upload video how to calculate area of Trapezoid already so this is my link to watch on youtube http://youtu.be/ezazZUlHuBU
Thanks Teacher for watching.
Write Code Print " Hello World"
Major : TMD
The video I have been created by C++ and using VB.net. How to show message "Hello World".
Code
#include<stdio.h>
#include<stdlib.h>
int main(void)
{
printf("Hello World");
system("pause");
return 0;
}
This Link to Video.
Calculation area of Trapezium
Name: Chea Lida
Major: TMD
#include <stdio.h> // stdio.h is the name of library that include printf and scanf function
#include <stdlib.h> //stdlib.h is the name of library that include system ("pause") function
int main(void) // Function who shall there is on each program c
{
float a; // for small bottom of Trapezium
float b; // for big bottom of Trapezium
float h; // for height of Trapezium
float area; // for area of Trapezium
printf (" Please input small bottom of Trapezium: \n");
scanf("%f",&a);
printf ("Please input big bottom of Trapezium: \n");
scanf("%f",&b);
printf ("Please input height of Trapezium:");
scanf ("%f",&h);
area = ((a+b)*h)/2;
printf ("Area of Trapezium is= %d\n",area);
system("pause"); //to pause a program and wait for a keyboard input to continue.
}
http://www.youtube.com/watch?v=wBucl_jQJJk&feature=youtu.be
Major: TMD
#include <stdio.h> // stdio.h is the name of library that include printf and scanf function
#include <stdlib.h> //stdlib.h is the name of library that include system ("pause") function
int main(void) // Function who shall there is on each program c
{
float a; // for small bottom of Trapezium
float b; // for big bottom of Trapezium
float h; // for height of Trapezium
float area; // for area of Trapezium
printf (" Please input small bottom of Trapezium: \n");
scanf("%f",&a);
printf ("Please input big bottom of Trapezium: \n");
scanf("%f",&b);
printf ("Please input height of Trapezium:");
scanf ("%f",&h);
area = ((a+b)*h)/2;
printf ("Area of Trapezium is= %d\n",area);
system("pause"); //to pause a program and wait for a keyboard input to continue.
}
http://www.youtube.com/watch?v=wBucl_jQJJk&feature=youtu.be
Video Tutorial Hello World pada Visual C++ 2010
Assalamualaikum...
Ini adalah video tutorial pertama kali membuat program C menggunakan Visual C++ 2010. dalam video ini dijelaskan pemakaian librarti untuk menampilkan kata.
moga-moga aja bisa membantu...
Ini adalah video tutorial pertama kali membuat program C menggunakan Visual C++ 2010. dalam video ini dijelaskan pemakaian librarti untuk menampilkan kata.
moga-moga aja bisa membantu...
Tutorial Rumus Trapesium menggunakan Microsoft Visual C++ 2010
Berikut ini adalah Tutorial membuat Rumus Trapesium menggunakan bahasa C++ dengan aplikasi Microsoft Visual C++ 2010 Express,,,
Berikut saya tampilkan dalam bentuk video,,,
Ini linknya
http://www.youtube.com/watch?v=n4aoSboTjbw&feature=youtu.be
Berikut saya tampilkan dalam bentuk video,,,
Ini linknya
http://www.youtube.com/watch?v=n4aoSboTjbw&feature=youtu.be
How to calculate area of Trapezium in C programming using Visual C++ (Tep Senghak)
Nama: Tep Senghak
UNIVERSITY: D4 ITB BATCH 6
EDUCATION MAJOR: TMD
This video show you how to calculate "Area of Trapezium" in C Programming by using Visual C++. In order to do you have to follow this step:
1. Open Microsoft Visual Studio 2010
2. Click File and then choose New project
3. On Template Application select Visual C++ then choose Win32 console application
4. Type your Project File then Click OK
5. Click Next
6. Select console application and Empty project
7. Click Finish
8. Right click on Source Files of project then select Add and after all New Item
This is the video how to calculate area of trapezium or you can visit youtube at this link below: http://www.youtube.com/watch?v=8Xpl8dSiPoU&feature=plcphttp://www.youtube.com/watch?v=8Xpl8dSiPoU&feature=plcp
Tugas Modul 1 - Tutorial Program HelloWorld dengan menggunakan Microsoft Visual C++
Berikut adalah Tugas Modul 1 saya yaitu tutorial program HelloWorld dengan menggunakan Microsoft Visual C++
dapat anda lihat di youtube dengan link dibawah :
http://youtu.be/fGrYMQAfN6k
dapat anda lihat di youtube dengan link dibawah :
http://youtu.be/fGrYMQAfN6k
How to print "Hello world!" in C programming by using Visual C++(Tep Senghak)
http://www.youtube.com/watch?v=p21Ob2IGLP4&feature=youtu.
Nama: Tep Senghak
UNIVERSITY: D4 ITB BATCH 6
EDUCATION MAJOR: TMD
This video show you how to coding "Hello world!" in C Programming by using Visual C++. In order to do you have to follow this step:
1. Open Microsoft Visual Studio 2010
2. Click File and then choose New project
3. On Template Application select Visual C++ then choose Win32 console application
4. Type your Project File then Click OK
5. Click Next
6. Select console application and Empty project
7. Click Finish
8. Right click on Source Files of project then select Add and after all New Item
This is the Video File or you can visit at youtube by click this link below:
http://www.youtube.com/watch?v=p21Ob2IGLP4&feature=youtu.
Nama: Tep Senghak
UNIVERSITY: D4 ITB BATCH 6
EDUCATION MAJOR: TMD
This video show you how to coding "Hello world!" in C Programming by using Visual C++. In order to do you have to follow this step:
1. Open Microsoft Visual Studio 2010
2. Click File and then choose New project
3. On Template Application select Visual C++ then choose Win32 console application
4. Type your Project File then Click OK
5. Click Next
6. Select console application and Empty project
7. Click Finish
8. Right click on Source Files of project then select Add and after all New Item
This is the Video File or you can visit at youtube by click this link below:
http://www.youtube.com/watch?v=p21Ob2IGLP4&feature=youtu.
How to Calculate Trapezoid and Print Hello World.
Name : Chhorn Bros
Major : TMD
This video that I have been created and explain by English, How to Calculate Trapezoid and Print Hello world with C program.
Code
#include<stdio.h>
#include<stdlib.h>
int main(void)
{
float base1,base2,height,Calculate;
printf("Area of a Trapezoid\n");
printf("base1:");
scanf_s("%f",&base1);
printf("base2:");
scanf_s("%f",&base2);
printf("Height:");
scanf_s("%f",&height);
Calculate= (base1+base2)*height/2;
printf("Calculate Trapezoid %.3f\n",Calculate);
system("pause");
return 0;
}
1. Video Calculate Trapezoid.
This Link to Video.
http://www.youtube.com/watch?v=cW3HxPP92vk
https://www.youtube.com/watch?v=vqF1kOf97yY
Major : TMD
This video that I have been created and explain by English, How to Calculate Trapezoid and Print Hello world with C program.
Code
#include<stdio.h>
#include<stdlib.h>
int main(void)
{
float base1,base2,height,Calculate;
printf("Area of a Trapezoid\n");
printf("base1:");
scanf_s("%f",&base1);
printf("base2:");
scanf_s("%f",&base2);
printf("Height:");
scanf_s("%f",&height);
Calculate= (base1+base2)*height/2;
printf("Calculate Trapezoid %.3f\n",Calculate);
system("pause");
return 0;
}
1. Video Calculate Trapezoid.
This Link to Video.
http://www.youtube.com/watch?v=cW3HxPP92vk
https://www.youtube.com/watch?v=vqF1kOf97yY
Belajar Bahasa C - 1
Salam, Kali ini saya akan sharing tentang bagaimana membuat hello world pada bahasa c. Untuk kompilasinya saya menggunakan code block. dikarenakan codeblock sangat ringan dan user frindly.
1. Aplikasi Hello World
source code :
#include // standar input-output library
#inlcude // library dari system(pause) dan lain2.
int main()
{
printf("Hello World"); //memunculkan kata 'Hello World dilayar'
system("pause"); // menahan program agar tidak langsung tertutup
return(0); //mengembalikan nilai ke semula.
}
code diatas bisa dijalankan compiler manapun.
berikut video lengkapnya :
2. Aplikasi Mencari Luas Trapesium
#include <stdio.h>
#include <stdlib.h>
float s1, s2, tg, Hasil;
int main (void)
{
printf("Silahkan input Sisi-1 :");
scanf_s("%f",&s1);
printf("Silahkan input Sisi-2 :");
scanf_s("%f",&s2);
printf("Silahkan input Tinggi :");
scanf_s("%f",&tg);
hasil = ((s1+s2)*tg)/2;
printf("Luas Trapesium adalah : %f \n", hasil);
system("pause");
return 0;
}
1. Aplikasi Hello World
source code :
#include
2. Aplikasi Mencari Luas Trapesium
#include <stdio.h>
#include <stdlib.h>
float s1, s2, tg, Hasil;
int main (void)
{
printf("Silahkan input Sisi-1 :");
scanf_s("%f",&s1);
printf("Silahkan input Sisi-2 :");
scanf_s("%f",&s2);
printf("Silahkan input Tinggi :");
scanf_s("%f",&tg);
hasil = ((s1+s2)*tg)/2;
printf("Luas Trapesium adalah : %f \n", hasil);
system("pause");
return 0;
}
How to printf Hello World !
Name: Chea Lida
Major: TMD
#include <stdio.h> //stdio.h is the name of library that include printf and scanf function
#include <stdlib.h> //stdlib.h is the name of library that include system ("pause") function
int main(void) // Function who shall there is on each program c
{
printf("Hello World!\n"); //use for send output to screen
system("pause"); //to pause a program and wait for a keyboard input to continue.
}
http://www.youtube.com/watch?v=wlZLO3juiZ8&feature=youtu.be
Major: TMD
#include <stdio.h> //stdio.h is the name of library that include printf and scanf function
#include <stdlib.h> //stdlib.h is the name of library that include system ("pause") function
int main(void) // Function who shall there is on each program c
{
printf("Hello World!\n"); //use for send output to screen
system("pause"); //to pause a program and wait for a keyboard input to continue.
}
http://www.youtube.com/watch?v=wlZLO3juiZ8&feature=youtu.be
Subscribe to:
Posts (Atom)



