Ahad, 20 Mac 2011

Sifir

#include <iostream.h>
void main()
{
     int x,y;
     x=1;
     while(x<=12)
{
     y=1;
     while(y<=12)
{
     cout<<x;
     cout<<" * ";
     cout<<y;
     cout<<x*y;
}
     cout<<"\n**********\n"
}

Jumaat, 11 Mac 2011

FOP Weekly Reflection 6

Class start kol 10 dgn exercise minggu lepas miss nk tgk. jawapan yg betul akan ditulis didepan. selepas soalan 1 dan 2 siap dipaparkan semua students menyalin bagi yg salah. lepas itu miss ajar Loop. dan ade memberi contoh Loop


selepas miss mengajar loop miss memberi latihan individu kerana miss ingin semua students mahir dalam fop. exercise yg diberi adalah.
1. fill in the blank with the appropriate data types for the following variable declaration syntax
a. _________ number 1=1
b. _________ number 3=30
c. _________ text 1=" i have a car"
d. _________ huruf = "b"
e. _________ account no = "6666666443"

2. you are given PTPTN loan with the amount of rm16000. calculate the amount that you should pay other PTPTN discount based on the CGPA. you must use if...else statement
Output
Jumlah pinjaman = rm16.000
CGPA yg diperoleh = 3.00
Diskaun = rm 12.800

#include <iostrean.h>
main()
{
      //declare variable
      float (cgpa,discount,jumlah_pinjaman,bayaran_pinjaman;
      cout<<"jumlah pinjaman=";
      cin>>jumlah_pinjaman;
      cout<<"cgpa yg diperolehi=";
      cin>>cgpa;
    
      if (cgpa>=3.99&&cgpa<=3.00);
      diskaun = jumlah_pinjaman * 80/100;
      bayaran_pinjaman = jumlah_pinjaman - diskaun;
      cout<<"\n Diskaun ="<<diskaun<<endl;
      cout<<"jumlah pinjaman yg perlu dibayar selepas="<<bayaran_pinjaman<<endl;


3. you are required to do program that will execute the multiply or divided operation is based on the user's choice. you must use switch.....case statement
Output:

#include <iostream.h>
main()
{
      //Declare variable
      int num1,num2,selection,total_multiply,total_divided;
    
      cout<<"masukkan nombor 1=";
      cin>>num1;
      cout<<"masukkan nombor kedua=";
      cin>>num2;
      cout<<"masukkan pilihan anda=";
      cin>>selection;
      switch(selection)
{
case 1:(selection=1)
     total_multiply = num1*num2;
     cout<<hasil darab"<<num1<<"dan<<num2<<"ialah"<<total_multiply endl;
     break
case 2:(selection=2)
     total_divide = num1/num2;
     cout<<hasil_bahagi"<<num1<<"dan<<num2<<"ialah"<<total_divide endl:
     break
}
return 0;
}



4.change the algebra expression to anthmetic expression

5. solve the statement below to find m value show the working :-
a) m = 5
m* = (3+4) * 2
b) m = 2
m* = ((3*4)1/2)-9

6. find the output for the following segment:-
a) float var 1 = 25.12, var 2 = 15.0;
if (var 1<= var 2) cout<<"var 1 less or same as var 2"; else cout<<"var 1 bigger than var 2"; 
b) int n = 20; n/= 5;

7.convert the while statement below for statement
 int j = 10; while (j>0)
{
cout<<" "<<j
J--J
}


8. write of program that needs 4 prices using while loop and calculates the sum of the thing a program must use function while for calculate the average of the price.
#include <iostream.h> 
main() 
int k; 
float P,total,average; 
K=1 
while(k<=4) 
{
cout<<"Enter price"<<K<<"=j;
cin>>P;
ktt; total=total+P; 
}
average=total/4;
cout<<"your total is"<<total<<"and average is" average;
return0; 
}




FOP Weekly Reflection 5

Mcm biasa class start kol 10. Masuk Class miss Bagi Exercise iaitu:
Soalan 1

MESIN TIN MINUMAN (SWITCH...CASE)
*****************
MESIN TIN MINUMAN
-----------------
1- PEPSI
2- COCA COLA
3- F&N MIRINDA
4- F&N ORANGE
5- 100 PLUS
*****************

Enter your drink:
Enter your money (RM):

Your drink is __________ and your balance are __________

*If the customer does not enter enough money, asked the customer to insert the money. (if...else)


Soalan 2
CALCULATE (IF...ELSE)
CALCULATE:
a) RECTANGULAR
b) TRIANGLE
c) CIRCLE
d) FAHRENHEIT
e) CELCIUS

Your Selection:

Your Selection is _________ and you are calculate _________. The answer is _____________
setiap group kena buat 2 soalan yg diberi oleh miss. miss beri bagi masa smpi ko 12 lebih bagi menyiapkan soalan diatas. bagi group nas faris sedaya-upaya menyiapkan 2 soalan yg diberikn oleh miss. selepas siap dan di check oleh miss ade beberapa kesalahan yg dilakukan oleh group nas. tapi miss tidak memberi jawapan bagi soalan 1 dan 2. Sbb miss nk suwh students buat dulu baru miss bagi jawapan yg betul. sebeleum mengakhiri class miss ingat melihat jawapan soalan 1 dan 2 di minggu depan.

Jawapan Soalan 1

#include <iostream.h>
main()
{
      //declare
      int selection;
      float money,balance,price,addm,add;
      //out
      cout<<"******************"<<endl;
      cout<<"Mesin Tin Minuman"<<endl;
      cout<<"------------------"<<endl;
      cout<<"1.PEPSI";
      cout<<"\n2.COCA COLA";
      cout<<"\n3.F&N MIRINDA";
      cout<<"\n4.F&N ORANGE";
      cout<<"\n5.100 PLUS"<<endl;
      cout<<"******************"<<endl;
      //input
      cout<<"\nPlease Choose Your Drink"<<endl;
      cin>>selection;
    
      cout<<"\nPlease Enter MONEY: ";
      cin>>money;
    
      switch (selection)
      {
             case 1: cout<<" Your drink is Pepsi";
                     price = 2.00;
                     break;
             case 2: cout<<" Your drink is Coca Cola";
                     price = 2.00;
                     break;
             case 3: cout<<" Your drink is F&N Mirinda";
                     price = 1.80;
                     break;
             case 4: cout<<" Your drink is F&N Orange";
                     price = 1.80;
                     break;
             case 5: cout<<" Your drink is 100 Plus";
                     price = 2.50;
                     break;
             default: cout<<"invalid selection";
             }
    
      if (money>price)
      {
                      balance = money - price;
      }else if (money<price){
                            add = price - money;
                            cout<<"Please add (RM" <<add<< ")= ";
                            cin>>addm;
                            balance = money + addm;
                            }
                            cout<<"Your balance is "<<balance;
                            return 0;
}

Isnin, 28 Februari 2011

Exercise Weekly Reflection 4(answer)

1.(a) Variable Name =
Float Pi = 3.14;
(b) double parameter;
(c) Declare
Int data;
Cout<<”insertdata=”; Cin>>data;
(d) cin>>num;

2.(a) (5*2)%3+25/5
(10%3)+25/5
1+(25/5)
1+5
=6

(b)! ((5>3) && (5==3) II (6>9))
[(( 0 ) && (0)] II (0))
(0) (0)
!(0) (0)
=1

3. #Include <iostream.h>
Main ()
{
Float Allwance=300.00;
Salary;
Cout<<”Inputsalary=”;
Cin>>salary;
Tsalaray=salary+allowance;
Cout<<”totalsalary is="<<salary;
return0;
}


4. #include <iostream.h>
main()
{
float dpayment, tpayment;
cout<<"Enter your daily payment=";
cin>>dpayment;
tpayment=dpayment*22;
cout<<"Your salary="<<salary;
return 0;
}

5. #include <iostream.h>
main()
{
//Declare Variable
float num1,num2,num3,num4,num5;
//Input num1
cout<<"Enter num1=";
cin>>num1;
//Input num2
cout<<"Enter num1=";
cin>>num1;
//Input num2
cout<<"Enter num2=";
cin>>num2;
//Input num3
cout<<"Enter num3=";
cin>>num3;
//Input num4
cout<<"Enter num4=";
cin>>num4;
//Input num5
cout<<"Enter num5=";
cin>>num5;
//formula
calculate average=(num1+num2+num3+num4+num5)/5;
//Output
cout<<"calculate="calculate;
return0;
}

6. #include <iostream.h>
main()
{
      //declare
      float b,h,r,w,area,;
      float pi=3.14;
      int selection;
      //out
      cout<<"Please choose you choice"<<endl;
      cout<<"1.Rectangular";
      cout<<"\n2.Triangle";
      cout<<"\n3.Circle"<<endl;
      cin>>selection;
      switch (selection)
      {
             case 1: cout<<"Please input the height"<<endl;
                     cin>>h;
                     cout<<"Please input the width"<<endl;
                     cin>>w;
                     //process
                     area = w*h;
                     cout<<"The area is:"<<area;
                     break;
             case 2: cout<<"Please input the height"<<endl;
                     cin>>h;
                     cout<<"Please input the base"<<endl;
                     cin>>b;
                     //process
                     area = 0.5*b*h;
                     cout<<"The area is:"<<area;
                     break;
             case 3: cout<<"Please input the radius"<<endl;
                     cin>>r;
                     //process
                     area = pi*r*r;
                     cout<<"The area is:"<<area;
                     break;
             default :cout<<"Invalid Selection";
             return 0;
             }
}






Sabtu, 26 Februari 2011

FOP 22/2/2011 Weekly Reflection 4

Class start pada kol 10 pagi. Masuk class miss memberi notes 1,2,3,4,5,6 di dalam forum dan suruh download sebagai rujukan pada yg belum ade notes. Selepas itu miss memulakan pembelajaran dgn chapter 4 dimana berkenaan arithmetic operators, relational operators, logical operators. Selepas belajar mcm biasa miss memberi exercise logical operator by group dan ade (5mark). Group nas telah mendapat 5mark bagi exercise yg diberi oleh miss. Selain itu miss mengajar chapter 6 decision. Dan miss memberi exercise by group if...else & switch case. Sebelum mengakhiri class miss memberi exercise sebanyak 6 dijadikan sebagai homework dan kerja exercise tersebut dibuat secara individu dan perlu dipostkn di dalam blog sendiri.
Nota

Selasa, 22 Februari 2011

FOP 8/2/2011 Weekly Reflection 3

Masuk class kol 9 lepas miss suwh sign attendance sblum lepas kn gi rehat 30min. Lepas rehat bermulanya sesi pembelajaraan dimana miss mengajar cara2 nk wat blogspot seperti daftar, letak gadget dan mengubah template. Selepas selesai pembelajaraan blog miss mensambung dgn C++ dimana miss menyuruh students mendownload di forum http://lect-ayuni.forumms.net bagi memudahkan students membuat latihan yg diberi oleh miss terus direct ke pc. Miss member latihan
Calculate 3 numbers with using the formula below :-
calculate = (num1*num2)-num3+(num2/num1)
Dengan mengunakan software C++ kerana dgn software ini mudah utk mengenalpasti kesalahan yg dilakukan dan bagi group yg xsalah akan mendapat mark penuh iaitu 6. Selepas selesai melakukan tugasan yg diberi oleh miss dgn cemelangnya seperti biasa sebelum mengakhiri class miss menyuruh melakukan weekly reflection dan mempost kn di forum http://lect-ayuni.forumms.net. Selain itu miss memberi 2 homework yg berbeza berkenaan C++ dimana perlu dipostkan dalam masa terdekat. Sekain utk fop pada 8/2/2011.
Jawapan calculate = (num1*num2)-num3+(num2/num1)

#include <iostream.h>
main()
{
//declare variable
float num1,num2,num3,calculate;
//input num 1
cout<<"enter num1=";
cin>>num1;
//input num 2
cout<<"enter num2=";
cin>>num2;
//input num3
cout<<"enter num3="
cin>>num3;
//formula
caculate=(num 1*num 2) - num3 + (num2/num1);
//output
cout<<"calculate="calculate;
return0;
}

Sabtu, 12 Februari 2011

FOP Second Day Weekly Reflection 2

FOP 1.2.2011
Di awal pembelajaran Miss menyuruh mendaftar di forum http://lect-ayuni.forumms.net bagi memudahkan mempostkan kerja2 yg diberi oleh miss sebelum bermulanya class miss menyuruh memberi member ID atau username utk approve masuk ke forum miss dan miss memberi rehat selama 30min. Selesai rehat miss memberi masa 45min utk mempost homework iaitu mencari perbezaan procedural programming , structured programming dan object oriental programming yg diberi minggu lepas dan dipostkan ke dalam forum miss. Selepas itu miss memulakan sesi pembelajaraan dimana chapter 2 diajar mengenai C++ dan perlu dipahami kerana hendak ditulis didlm weekly reflection 2. Selepas selesai sesi pembelajaraan mcm biasa miss memberi latihan kepada semua kumpulan dan kumpulan nas mendapat latihan integer multiply num 1 * num 2 mula rase risau sbb dlm kumpulan nas bdk IT xdtg tapi miss memberi tunjuk ajar dgn jayanya dpt kumpulan nas melakukan dgn markah hilang 1 sbb terlupa taruk simbol } di akhir. Sebelum pulang miss memberi 3 kerja iaitu membuat weekly reflection 2 dan dipostkan ke forum selain itu juga reflection 1 juga hendak dipostkan ke forum dan akhir sekali ialah kerja yg diberi berkenaan integer hendak turut serta dipostkan kedalam forum.. sekian utk fop pada 1.2.2011
Jawapan integer multiply num 1 * num 2


#include<iostream.h>
main()
{
//Declare variable
int multiply,num1,num2;
//Input num1
cout<<"Enter num1 =";
cin>>num1;
//Input num2
cout<<"Enter Num 2 =";
cin>>num2;
//Formula
multiply=num1*num2;
//Output
cout<<"mutiply= "<<mutiply;
return 0;
}




FOP First Day Weekly Reflection 1


Hari pertama masuk class fop ingat kn nas sorang je yang lelaki. Tapi ada juga kaum adam yang masuk. Tetapi lewat lega hati rase sbb ada kwn nk tmpt bergaul. Sbleum bermulanya class ade sesi pengenalan diantara lect dan semua student dan pemilihan ketua serta penolong la dikira mcm sklh. Dlm pemilihan tersebut xsangka pulak nas yg dipilihnya tapi nas ni xberpe tahu sangat la pasal IT dlm pemilihan tersebut lect = miss ayuni hanya memilih dan melihat perhubung diantara lelaki dan perempuan. Time 2 mase class awal xde kaum adam sbb 2 terjoin dgn group kaum hawa dah nasib nk buat mcm mane kena pikul tanggungjawab sekali lagi sbb di sekolah dulu pun nas penolong masa form 4,5 skrng sambung kontrak agi la dikiranya. Hehe. Selepas 2 miss menyuruh mengagihkan kumpulan setiap kumpulan memerlukan 5owng dan bercampur E-Business dan IT bagi membantu antara satu sama lain di dlm kumpulan. Slepas itu miss menerangkan markah di dlm fop sperti:
1.weekly reflection = 5m                                                                                                                                                           weekly mcm apa yg kita pelajari dihari ini dan ditulis di forum sperti menerangkan ape kita pham hari yg dipelajari                                                                                                                                                                                                    
2. zip file = 5m
3. blog = 10m (blogspot.com, wordpress.com)                                                                                                                         membuat blog bagi setiap individu dan mempost kn apa yg dilakukan dihari pembelajaraan
4. mid term = 10m
5. final exam = 40m

Slepas selesai penerangan diberi bermulanya class fop dgn chapter 1 iaitu yg byk menitik berat kn ialah algorithm, pseudocode, flowchart. Dan memberi tugasan kpd setiap kumpulan yg terdiri daripada 6 kumpulan soalan yg diberi bagi kumpulan nas ialah
1.       Get Fahrenheit if celcius
2.       Do celcius = (5/9)*(Fahrenheit -32)
3.       Display celcius as output
Selepas selsai tugasan yg diberi miss member homework iaitu mencari
·         difference betwwen procedural programming,structured programming,object oriented programming
sebelum mengakhiri class miss menyuruh membuat weekly reflection 1 di dlm kertas. Tapi bagi ketua dan penolong ada pertemuan sbb miss memberi penerangan terhadap tanggungjawab yg harus dipikul.