<body><script type="text/javascript"> function setAttributeOnload(object, attribute, val) { if(window.addEventListener) { window.addEventListener('load', function(){ object[attribute] = val; }, false); } else { window.attachEvent('onload', function(){ object[attribute] = val; }); } } </script> <div id="navbar-iframe-container"></div> <script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <script type="text/javascript"> gapi.load("gapi.iframes:gapi.iframes.style.bubble", function() { if (gapi.iframes && gapi.iframes.getContext) { gapi.iframes.getContext().openChild({ url: 'https://www.blogger.com/navbar.g?targetBlogID\x3d23341185\x26blogName\x3dlalala.im+crazy\x26publishMode\x3dPUBLISH_MODE_BLOGSPOT\x26navbarType\x3dBLUE\x26layoutType\x3dCLASSIC\x26searchRoot\x3dhttps://thevoguebrooch.blogspot.com/search\x26blogLocale\x3den_US\x26v\x3d2\x26homepageUrl\x3dhttp://thevoguebrooch.blogspot.com/\x26vt\x3d-1548989700603337576', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe" }); } }); </script>
Fiona Kwan.
18.
7 june 1991
Ngee Ann Poly.
AVT.


Bituwin - template
Dementee - image

Words from Before It's Too Late by Goo Goo Dolls.

Hit counter code here

Sunday, May 18, 2008

1) Tony & Sijia (accompanying me whenever i am down)
2) Peilin & Frec & Florence (helping me in EVERYTHING)
3) Kenric (editing my work)
4) Marcus & Ronney (tuition me)
5) Haixing (entertain me!)

THANKS PEOPLE!!! Thanks to be my friend :)
*did i miss anybody out? i hope not*


I HATE YOU COMPRO!!!!
my bro irritates me +
compro irritates me +
homework irritates me +
the weather irriates me +
= MADNESS!!!!

Marcus's explanation for compro!
  • declare -> input(ask the qs) -> calculate(work out the qs) -> output(tell the ans)
  • memorise stuffs like #define etc cos its always used
  • all the #define stuffs always there, except for #define .
  • Only use that when got calculation involving math, like sin cos
  • under declare, u just have to declare everything ur gonna use.
  • just remember int and float, most commonly used. int means no decimal like 1, 2, 3(for eg can be used for age month etc).
  • float means got decimal, like 5.234(eg price length)
  • must always put ";"
  • like an eg printf("Enter your age: ");
    scanf("%d", &age);
    printf(" "); ----> Type your qs here
    scanf(" ", & ); ---> assign what u just typed to this character
  • %d means int
    %f means floating pt
  • eg The length is 5 cm
    i have to type this
    printf("The length is %f cm\n" length);
    the %f means like a blank space for your answer, can be %d too
    and the \n means new line
    printf("The length is %f cm\n", length);
    finally u end with(must memorize)
    exit;
    }exit ( 0 ) ; --> take out the spacing