welcome to OUR CLASS blog
ENJOY your stay!!
navigations are on the RIGHT.
EVERYBODY frm 1B02 is welcomed to post ANYTHING on THIS blog =)
PS juz rmb to write YOUR name at e end of e post =D
1) FYP
2) PDES PBL
all photos are hereeeeee!! UPLOADED!! EXCITED for the photos right, ppl!!!
enjoy~ :))
-michelle
; tortured on 11:44 PM =/
Date: 26Aug2008, Tuesday
Meeting time: 12 noon!!(Don't be late!)
Meeting place: Pasir ris Mrt control station
Plan for the day
12 noon - Meetup at control
12 -1pm - OTW to downtown east ehub; buy movie tickets
1-3++4pm - In the cathay cinema watching Death Race
3++4pm - We will go to have out late lunch/early dinner
and aftertt if weather is perfect we will go to pasir ris park to play(cycle,skate,beach play?)
becoz this few days have been rainin, IF on that day reali rain, we shall stay at ehub there and walk ard(pool,arcade) or ur wanna go hme oso can..
any objections???
P.S: Let call tis outing as a gathering bahx coz not the whole class going.
hpefully the next outing everyone of 1a02 can come =]
Comfirmed attendance:
Felicia, Whyz Chiz, Zhi Xiang, Huijay, Marcus, Gabriel, Hansheng , Michelle, Kengfai and ME~!
shazwin and try will join us after our movie =)
-♥Jessle
; tortured on 5:04 PM =/
Exams r OVER.. so lets play for tis hols~ XD
Here r som announcements i will lik to mak..
N do tell our class ppl to come read dem aiight? =P
1. Class outing
I hope we can hav a class outing som time soon (mayb nex week)
N i will lik to put Hui Jay n Jessle as in charge for organising tis class outin..
Hope every1 can spare our class one day ya? haha=)
2. Class Tee
I know we hav been delayin our class tee idea for awhile now..
So can Abigail n Shazwin tak over frm where we left?
Hopefully u two can find som1 to come up wif da designs..
Any1 who has an idea or sth.. do feel free to tell dem oki?
3. Final Year Outing
Tis is jus a suggestion tt i will lik to propose..
We can hav a gathering durin Dec hols where on tt day we celeb every1's bday..
In a way.. every1's bday will b celeb n no1 will b left out.. haha=)
N we can save on buyin cakes too.. =P
So on tt day every1 will brin a pressie n we will all get one pressie by drawin lots or sth..
Pls leave a tag or comment abt tis idea.. i will lik to gather every1's idea b4 implementin it..
Tats all ppl.. Hope u all hav an enjoyable hols ahead!
---by class secretary marcus ^.^
; tortured on 3:00 PM =/
; tortured on 10:41 AM =/
His room
Wii!!
Who got the rest please upload too! (Sry ar a little over size)
kf ~
; tortured on 9:43 PM =/

; tortured on 10:35 PM =/
2. jay -- dri fit
3. gabriel -- dri fit
4. whye chiz -- polo
5. keng fai -- polo
6. shazwin -- dri fit
7. abigail -- polo
8. daniel boey -- polo
9. han sheng -- polo
10. felicia -- polo
11. sean -- dri fit
12. marcus -- dri fit
13. troy -- dri dit
14. try -- polo
15. qun li -- polo
16. zhi xiang -- polo
17. randolph - polo
18. daniel chua -- polo
19. jessle -- polo
20. ryan -- anything
polo = 13
dri fit = 6
---abigail =)
; tortured on 3:32 PM =/
#define NUMOFREADINGS 5 //This makes your program scale-able, more readings can be added.
using namespace std;
//function prototypes
void entry(double temp[]);
void display (double temp[]);
void avg_Temp (double temp[], double averageTemp);
double temp[NUMOFREADINGS], averageTemp;
int main()
{
double temp[NUMOFREADINGS];
cout << "Room Temperature Analysis" << endl;
cout << "=========================" << endl << endl;
entry(temp); // Call function to allow user to enter the readings
display(temp);
avg_Temp(temp, averageTemp);
return 0;
}
// Your functions here
void entry (double temp[])
{
int i;
for (i = 0; i < NUMOFREADINGS; i++)
{
cout << "Enter temperature: ";
cin >> temp[i];
}
return ;
}
void display (double temp[])
{
int i;
cout << endl << "You have entered the folllowing readings: ";
for (i = 0; i < NUMOFREADINGS; i++)
{
cout << temp[i];
if (i+1 < NUMOFREADINGS)
{
cout << ", ";
}
}
return ;
}
void avg_Temp (double temp[], double averageTemp)
{
double total_Temp = 0;
int i;
for (i = 0; i < NUMOFREADINGS; i++)
{
total_Temp += temp[i];
}
averageTemp = total_Temp / NUMOFREADINGS;
cout << endl << endl << "Average temperature is : " << averageTemp << endl;
return ;
}
try
; tortured on 10:56 PM =/