Monday, March 28, 2011

Exercise 1










#include<iostream.h>
main()
{
      //declare variable
      float num1,num2,num3,calculate;
      //input1
      cout<<"please insert number for num1 =";
      cin>>num1;
      //input2
      cout<<"please insert number for num2 =";
      cin>>num2;
      //input3
      cout<<"please insert number for num3 =";
      cin>>num3;
      //formula
      calculate =(num1*num2)-num3+(num2/num1);
      //output
      cout<<"the answer for the problem is ="<<calculate;
      return 0;
      }

Exercise 2











#include <iostream.h>
main()
{
      //declare
      float cgpa,total,total2;
      char a;
      //input
      cout<<"Please enter your CGPA:"<<endl;
      cin>>cgpa;
      if (cgpa == 4.00)
      {total = (1)*16000;
      total2 = 16000 - total;}
      else if (3.00<=cgpa<=3.99)
      {total = (0.8)*16000;
      total2 = 16000 - total;}
      else if (2.00<=cgpa<=2.99)
      {total = (0.4)*16000;
      total2 = 16000 - total;}
      else if (0<=cgpa<=1.99)
      {total = (0)*16000;
      total2 = 16000 - total;}
      else {cout<<"Invalid CGPA";}
      //output
      cout<<"Your CGPA is "<<cgpa<<endl;
      cout<<"Your Discount "<<total<<endl;
      cout<<"You have to pay "<<total2;
      cout<<"\n\nType quit to exit application"<<endl;
      cin>>a;
      return 0;
      }
    

Integer













#include<iostream.h>
main()
{
      //declare variable
      int multiply,num1,num2;
      //input1
      cout<<"Enter num1:";
      cin>>num1;
      //input2
      cout<<"Enter num2:";
      cin>>num2;
      //formula
      multiply=num1*num2;
      //output
      cout<<"Answer is:"<<multiply;
      return 0;
      }

Homework 2














#include <iostream.h>
main ()

{
     //variable
     float sub1,sub2,sub3,sub4,sub5,cpa;
     //input1
     cout<<"insert subject1:";
     cin>>sub1;
     //input2
     cout<<"insert subject2:";
     cin>>sub2;
     //input3
     cout<<"insert subject3:";
     cin>>sub3;
     //input4
     cout<<"insert subject4:";
     cin>>sub4;
     //input5
     cout<<"insert subject5:";
     cin>>sub5;
     //process
     cpa=((sub1*3)+(sub2*3)+(sub3*2)+(sub4*2)+(sub5*4))/5;
     //output
     cout<<"subject 1:"<<sub1<<endl;
     cout<<"subject 2:"<<sub2<<endl;
     cout<<"subject 3:"<<sub3<<endl;
     cout<<"subject 4:"<<sub4<<endl;
     cout<<"subject 5:"<<sub5<<endl;
     cout<<"CPA is:"<<cpa<<endl;
     return 0;
     }

Homework 1













#include<iostream.h>
main()

{
      //variable
      float as1,as2,as3,as4,as5,mid,final,total;
      //input1
      cout<<"assignment 1:";
      cin>>as1;
      //input2
      cout<<"assignment 2:";
      cin>>as2;
      //input3
      cout<<"assignment 3:";
      cin>>as3;
      //input4
      cout<<"assignment 4:";
      cin>>as4;
      //input5
      cout<<"assignment 5:";
      cin>>as5;
      //input6
      cout<<"midterm:";
      cin>>mid;
      //input7
      cout<<"final:";
      cin>>final;
      //formula
      total = as1+as2+as3+as4+as5+mid+final;
      //output
      cout<<"assignment 1 is:"<<as1<<endl;
      cout<<"assignment 2 is:"<<as2<<endl;
      cout<<"assignment 3 is:"<<as3<<endl;
      cout<<"assignment 4 is:"<<as4<<endl;
      cout<<"assignment 5 is:"<<as5<<endl;
      cout<<"mid score is:"<<mid<<endl;
      cout<<"final score is:"<<final<<endl;
      cout<<"total is:"<<total;
      return 0;
      }

if...else & switch...case











#include <iostream.h>
main()
{
      //declare
      float b,h,r,w,area;
      float c,f,cel,fah;
      float pi=3.14;
      int selection;
      //out
      cout<<"Please choose you choice"<<endl;
      cout<<"1.Rectangular";
      cout<<"\n2.Triangle";
      cout<<"\n3.Circle";
      cout<<"\n4.Fahrenheit";
      cout<<"\n5.Celcius"<<endl;
      cout<<"Your Selection is:"<<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<<"Your selection is"<<selection;cout<<"and you are calculate Rectangular"<<endl;
                     cout<<"The answer 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<<"Your selection is"<<selection;cout<<"and you are calculate Triangle"<<endl;
                     cout<<"The answer is:"<<area;
                     break;
         case 3: cout<<"Please input the radius"<<endl;
                     cin>>r;
                     //process
                     area = pi*r*r;
                     cout<<"Your selection is"<<selection;cout<<"and you are calculate Circle"<<endl;
                     cout<<"The answer is:"<<area;
                     break;
         case 4: cout<<"Please insert the celcius"<<endl;
                     cin>>c;
                     //process
                     fah= 9/5*(c+32);
                     cout<<"Your selection is"<<selection;cout<<"and you are calculate Fahrenheit"<<endl;
                     cout<<"The answer is:"<<fah;
                     break;
         case 5: cout<<"Please insert the fahrenheit"<<endl;
                     cin>>f;
                     //process
                     cel = 5/9*(f+32);
                     cout<<"Your selection is"<<selection;cout<<"and you are calculate Celcius"<<endl;
                     cout<<"The answer is:"<<cel;
                     break;
         default :cout<<"Invalid Selection";
          return 0;
             }
}

Saturday, March 26, 2011

Sifir












#include <iostream.h>
main()
{
     cout<<"*****"<<endl;
     cout<<"SIFIR"<<endl;
     cout<<"*****"<<endl;
     int a,b;
     char o;
     a=1;
     while (a<=12)
     {
           cout<<"\n";
           for (b=1;b<=12;b++)
           {
               cout<<" "<<a*b;
               }
               a++;
               }
               cout<<"\n\nType EXIT to quit application"<<endl;
               cin>>o;
               return 0;
               }

Mesin minuman













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

Weekly Reflection 4

Weekly Reflection 4 ni da lama da terlepas...(24 February 2011)
anyway here it is

-Class bermula pada kol 10.
-miss memberi notes 1,2,3,4,5,6 di dalam forum dan suruh download.
-study chapter 4 arithmetic operators, relational operators, logical operators.
-buat exercise logical operator by group dan ade (5mark)
-study chapter 6 decision
-buat exercise by group if...else & switch case.
-miss memberi homework 6 exercise secara individu dan perlu dipostkn di dalam blog sendiri.

as usual credit goes to our leader Nas for this Weekly Reflection