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

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 :





[ Pemrograman C ] Mencari Nilai Luas Trapesium

Kali ini saya akan mengupload tutorial tentang luas trapesium secara detail..
untuk videonya, langsung cek dibawah.


Video How to use Camstudio Recorder

Name: Om chanlyta
Major:  TMD D4 ITB Batch 6

========
Software:
CamStudio dan XVid Video Codec

========
--Format Video--

REGION
1. Fixed Region
    > unchecked "Fixed Top-Left Corner" & "Drag Corners to Pan"
    > Resolusi: Width x Height = 426 x 240

OPTIONS
1. Video Options
    > Compresor: Xvid MPEG-4 Codec
    > Compressor -> Configure -> Other options -> Encoder -> Unchecked "Display encoding status"
    > Uncheck: Auto Adjust
    > Set Key Frames Every = 20 frames
    > Capture Frame Every = 50 milliseconds
    > Playback Rate = 20 frames/second
2. Cursor Options
    > Cursor Display #
    > Cursor Highlight #
3. Audio Options for Microphone
    > Audio Capture #
    > Recording Format -> 11.025 kHz, mono, 8-bit
    > Interleave every: 100 Milliseconds
    > Unchecked "Use MCI Recording"
4. Pilih: Record audio from microphne
5. Pilih: Enable Autopan

TOOLS
1. Pilih: Video Annotations
    > Klik Kanan -> Video Format -> Resolution = 160 x 120
    > Klik Kanan -> Edit Text: Klik Kanan









This is my link.
http://www.youtube.com/watch?v=xsapwf1VSD4&feature=youtu.be



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





Area of trapezium


Name : luot sokchea

University : D4 ITB BATCH 6

Major : TMD


This is creating “ Area of trapezium ” in Microsoft Visual Studio 2010
-          Open Microsoft Visual Studio 2010 => File => New => Project
-          Visual C++ => Win32 console Application => Write projectname => OK => Next => console application and Empty project => Finish
-          Right click on soft files => Add => New item => C++ file(.cpp) and input file name => add => Write coding
-          Debug => Start Without Debugging


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

Hello world(luot sokchea)


Name : luot sokchea

University : D4 ITB BATCH 6

Major : TMD

This is creating “ Hello world ” in Microsoft Visual Studio 2010
-          Open Microsoft Visual Studio 2010 => File => New => Project
-          Visual C++ => Win32 console Application => Write projectname => OK => Next => console application and Empty project => Finish
-          Right click on soft files => Add => New item => C++ file(.cpp) and input file name => add => Write coding
-          Debug => Start Without Debugging

http://www.youtube.com/watch?v=c92rcJ6T9MM&feature=youtu.behttp://www.youtube.com/watch?v=c92rcJ6T9MM&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.

Write Code Print " Hello World"

Name : Chhorn Bros
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.

Program for execute Area trapzium in C programming

Name : Chroeng Soklay
Major : TMD

http://youtu.be/wofgNua5Mwk

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


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...

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

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 


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.





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







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;
}


Menghitung Luas Trapesium dengan bahasa c++

Tutorial berikut akan membahas bagaimana kita memanfaatkan bahasa C++, yang dalam hal ini kita fokuskan pada penghitungan luas trapezium.
Luas Trapesium secara manual dapat kita hitung dengan menggunakan rumus:
Luas Trapesium = (Jumlah sisi sejajar x tinggi) / 2

Dengan algoritma yang dibuat menggunakan bahasa C++, maka pengguna dapat langsung memasukkan nilai-nilai yang dibutuhkan lalu program yang akan menghitungnya dan menampilkan outputnya. Dengan adanya tutorial ini diharapkan, kita dapat mengembangkan bahasa C++ untuk kepentingan yang lain. Berikut video tutorialnya :

 

Created by : Aulia Riswanti Naya

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

print hello world and calculate trapezoid area

Dear Teacher
Name: Him Seanghon
Major: Modul1


Video time I just share their knowledge about creating simple programs using C++ language with Microsoft Visual Studio Software. In the video will explain the practice of:
- How to use Microsoft Visual Studio 
- Creation of a new project in C++
- The basic structure of the C++ language
- Compile and Running project of Microsoft Visual Studio and Command Prompt


This video that uploaded is below:
Result for Hello World!

Result for Calculate Trapezoid Area



Thank you Teacher Please reply for me if you saw homework me.

Menghitung Luas Trapesium Menggunakan Bahasa C


Hello World Menggunakan Bahasa C


Menghitung Luas Trapesium dengan C


Masih terkait dengan dengan modul 1, disini saya melampirkan link untuk menghitung luas trapesium, yang meliputi tipe data (saat ini menggunakan tipe data float), menggunakan fungsi rumus dan tidak ketinggalan librarynya termasuk system "pause" yang berfungsi untuk menahan tampilan agar tidak tampil sesaat.

Berikut link videonya :



Berikut source codenya : 

# include <stdio.h>
# include <stdlib.h>

int main (void)
{
float sisi1, sisi2, tinggi, LuasTrapesium;

printf(" Menghitung Luas Trapesium \n");
printf("Masukkan Angka sisi1 : \n");
scanf("%f", &sisi1);

printf("Masukkan Angka sisi2 : \n");
scanf("%f", &sisi2);

printf("Masukkan Angka Tinggi : \n");
scanf("%f", &tinggi);

LuasTrapesium = ((sisi1+sisi2)*tinggi)/2;
printf("Luas Trapesium = %.1f \n", LuasTrapesium);

system("pause");
return 0;
}

Pengenalan Program Bahasa C 'HelloWorld'



Berikut merupakan tutorial pengenalan bahasa pemrogram c++ dengan visual studio. Yang dimulai dengan pembuatan project baru dan outputnya. berikut adalah videonya :


created by : Aulia Riswanti Naya (TMD)

Tugas II : Hello! World

Tugas II Print "Hello!World."

Name : Phirum Tan
Major : Tiknik Media Digital

Hello! Teacher this is my link on youtube and my source code :


#include <stdio.h>
#include <stdlib.h>
int main(void)
{
printf ("Hello!World.\n");
system ("pause");
return 0;
}




Thanks for Watching.

Membuat Program Penghitungan Luas Trapesium dengan Bahasa C

Disini saya akan menjelaskan bagaimana cara membuat program penghitungan luas trapesium, dimana dalam mencari atau menghitung luas trapesium dibutuhkan rumus, dimana rumus untuk menghitung luas trapesium adalah Luas Trapesium = Jumlah Sisi sejajar*tinggi/2 = ((s1+s2)*t/2). Untuk penjelasan yang lebih detail lagi, bisa dilihat di video tutorial dibawah ini.



Terima Kasih, Semoga bermanfaat.

Tugas II

Name : Phirum Tan
Major : TMD
Hello! Teacher this is my link on youtube and my source code :


#include <stdio.h>
#include <stdlib.h>
int main(void)
{
printf ("Hello!World.\n");
system ("pause");
return 0;
}




Thanks for Watching.