Showing posts with label Chhorn Bros. Show all posts
Showing posts with label Chhorn Bros. Show all posts

Sunday, January 27, 2013

Tutorial 6 Java2SE: Application Student's Information.

NIM       : 49012076
Name     : Chhorn Bros
Major     : TMD
Topic      : Talk about (Application Student Information).




Link to Video



Sunday, January 6, 2013

Tutorial 1 Java2SE : How to make Capture image.

NIM       : 49012076
Name     : Chhorn Bros
Major     : TMD
Topic      : Talk about ( How to make Capture Image in java).


Link to video.
http://www.youtube.com/watch?v=oYATDfdqX04&feature=youtu.be
  

Friday, November 30, 2012

Tutorial 10 : C + + Programming Language : Windows Forms Application

NIM       : 49012076
Name     : Chhorn Bros
Major     : TMD

  In this Tutorial 10 I'd like to make simple program Calculator student score  using by Windows Forms Application in C++ language and below is video.


link to video
http://www.youtube.com/watch?v=5VWeXMN31Q4

Tutorial 9 : C + + Programming Language : Function


NIM       : 49012076
Name     : Chhorn Bros
Major     : TMD
Topic      : Talk about Function ( without return value, the return value, parameter).

Link to video.

Tutorial 8 : C + + Programming Language : Structure

NIM       : 49012076
Name     : Chhorn Bros
Major     : TMD
Topic      : Talk about Structure ( struct , enum, bit-field, typedf,union).



Link to video.



Tutorial 7 : C + + Programming Language : Array

NIM        : 49012076
Name     : Muhammad Syahrir Al fath
Major     : TMD
Topic      : About Arrays One Dimensional and Multi Dimensional Array.


Link to Video:

Turorial 6 : Loop statement.

NIM   : 49012076
Name : Chhorn Bros
Major : TMD

This is a video said about Loop statement that have four parts :
  Part 1 : Said about While loop
  Part 2 : Do......... While loop
  Part 3 : For Loop
  Part 4 : Nest Loop

and for more information about this , let's you all see video below.



Thanks for watching




Thursday, November 22, 2012

Tutorial 5 : Using if , if…else.., if…else if …else Switch statement.


Name  : Chhorn Bros
Major : TMD 

  In this video I have explained, What is the condition like  if , if…else.., if…else if …else Switch statement and  test code.

1.     If…statement
2.     If…else statement
3.     If…else if…else statement
4.     Switch statement 


Link to video


Tutorial 4 :Using Operator Arithmetic, Logical Bitwise, Ternary.

Name : Chhorn Bros
Major : TMD

In this video I have explained, What is the operator like  Operator Arithmetic, Logical Bitwise, Ternary and test code.
     1. Operators  Arithmetic
     2. Operators Logical
     3. Operators Bitwise
     4. Operators Ternary


Link to video



Tutorial 3 : How to use Assignment operator, Operator unary, Increment, Decrement.

Name : Chhorn Bros
Major : TMD

   In this video I have explained, What is the operator like Assignment operator, Operator unary, Increment, Decrement and test code.

1. Assignment operator
2. Operator unary
3. Increment
4.  Decrement



Link to Video

Tutorial 2 : How to use Data type ,Converting Data type, Constants, Variable


Name: Chhorn Bros
Major: TMD

In this video I have explained what is the Data type ,Converting Data type, Constants, Variable and test code.

1.Data type
2.Converting Data Types
3.constants
4.Variable 


 Link to video

Tutorial 1 : How to install IDE and Create prjoject

Name: Chhorn Bros
Major: TMD

In this video, I have explained about how to install Visual Studio 2010 Professional , important of IDE ( Integrated Development Environment), How  to use VS.

Link to video

Wednesday, November 7, 2012

How to using array and searching.


Name: Chhorn Bros
Major: TMD

Here I explain about how  to using array and searching index of array and  I have been made video in the below.



Link to video

http://www.youtube.com/watch?v=R1NlvPYzDLI&feature=youtu.be



Monday, November 5, 2012

How to solving a Linear Function.

Name: Chhorn Bros
Major: TMD

Here I explain about how  to solving a linear function and  I have been made code and video in the below.

Code
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main(void)
{
int x,y;
char label[100][100];
printf("Please to solving a Linear function:\n");
for(x=0;x<100;++x)
{
y=2*x-3;
printf("When X equal :%d then Yeqal is:%d \n",x,y);
}
system("pause");
return (0);
}

The Video

Link to video

Friday, November 2, 2012

Using array total amount and AVG.

Name: Chhorn Bros
Major: TMD


Here I explain about how  returned data array, the total number, average and  I have been made code and video in the below.
Code
#include <stdlib.h>
#include <stdio.h>
#include <string.h> 
int main(void)
{
int ter[5],n=0,k; 
float total = 0; 
printf("Enter the amount of data you want:(1 - 5)\n");
printf("Please enter number:");
while(n <= 0 || n > 5){
scanf("%d", &n);
}
for(k = 0; k<n; k++){
printf("\nEnter %d amount : ",k+1); 
scanf("%d", &ter[k]); 
}
for(k = 0; k < n; k++){
printf("\nData %d that you have been insert : %d", k+1, ter[k]); 
total = total + ter[k]; 
}
printf("\n\nTotal amount that have insert : %.0f\n", total);
printf("Average amount all the data you insert: %.2f\n", total/n); 
system("pause");
return (0);
}

Video Clip


Link to video.

http://www.youtube.com/watch?v=H8ZOjVGCmPs&feature=youtu.be

Wednesday, October 31, 2012

How to exchange rate rupiah to dollar.

Name : Chhorn Bros
Major : TMD

 Here I explain about how to exchange rate rupiah to dollar and the video that I have been made tutorial in the below.


The program should be input value and display.


   Nilai rupiah = 10000
   Kurs dollar = 7500
   Hasil penukaran
   Dollar = 1
   Sisa = 2500

The Video



Link to video.

http://www.youtube.com/watch?v=EXwxx3mbvMI&feature=youtu.be

Monday, October 29, 2012

How to calculate volume Pyramid and Sphere.

Name  : Chhorn Bros
Major  : TMD

Here I explain about how to calculate volume of triangular Pyramid and volume of Sphere and I think  it is not good but it can make your idea better.

Code
#include<stdio.h>  // Access file stdio.h Library
#include<stdlib.h>
#include<math.h>
int main()
{
int i;
float b,h1,h2,r,pi=3.14159,v;
do
{
printf("Enter number 1 to Calculate Volume of triangular pyramid.\n");
printf("Enter number  2 to calculate Volume of sphere:\n");
printf("Please chose number to Calculate:");
scanf_s("%d",&i); //Enter value i from Keyboard.
switch(i)
{
case 1: // if value equal 1, statement in case 1 execute
printf("Calculate the volume of triangular pyramid \n ");
printf("Enter Base:");
scanf_s("%f",&b);
printf("Enter height of base triangle:");
scanf_s("%f",&h1);
printf("Enter height of Pyramid:");
scanf_s("%f",&h2);
v=(b*h1*h2)/6;//formula for calculate Volume of triangular pyramid.
printf("The volume of triangular pyramid is: %f \n",v);
system("lcs");
break;
case 2: //if value equal 2, statement in case 2 execute
printf("Calculate the volume of sphere \n ");
printf("Enter radius of sphere:");
scanf_s("%f",&r);
v=((4/3)*pi*(pow(r,3)));//formula for calculate Volume of sphere
printf("The volume of sphere is: %f \n",v);
system("lcs");
break;
default:
printf("You have to chose first 1 or 2 to Calculate.\n");
break;
}

        while((i!=1)&&(i!=2)); //if you input  difference  number 1 and 2 you must input again.
system("pause");
return(0);








Link to Video
http://www.youtube.com/watch?v=F66qv_Lzhhw&feature=youtu.be

Thursday, October 25, 2012

How to use operations in C language.

Name : Chhorn Bros
Major : TMD

It is the third videos that I have been created and I want to  sharing my knowledge, how to use run C program in VB.net and to use arithmetic operations in C language.

1.C program has the following variables.

    int i=8,j=5,k;
    float x=0.005,y=-0.01, z;

2. 10 Questions and talking about  operations to be processed

    1. (3*i-2*j)%(2*j-4)
    2. 2*((i/5)+(4*(j-3))%(i+j-2))
    3. (i-3 *j) % ( 12 +2 *j ) / ( x - y )
    4. -(i + j )
    5. ++i
    6. j!=6
    7. ! ( i <= j )
    8. i %= j
    9. k = ( j ==5) ? i : j
    10.k = ( j > 5 ) ? i : j



This link to Video.

Tuesday, October 23, 2012

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.

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