<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by redgirl</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Tue, 07 Jul 2026 16:49:54 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Confinement Lady Price in Malaysia?</title>
            <link>http://forum.lowyat.net/topic/5449605</link>
            <description>Hi there,&lt;br /&gt;&lt;br /&gt;I&amp;#39;m actually still surveying whether to get a confinement lady or confinement centre. So we would like to know how much isit for a confinement lady price in Malaysia especially Kota Kinabalu or other states price also can at least we have a picture on it.&lt;br /&gt;&lt;br /&gt;Also, what to spend on the confinement lady? Heard that we need to give angpow for start work and end work rite and what else ya? &lt;br /&gt;&lt;br /&gt;Thanks in advanced&amp;#33;</description>
            <author>redgirl</author>
            <category>Pregnancy &amp;amp; Parenting</category>
            <pubDate>Wed, 03 Apr 2024 22:52:38 +0800</pubDate>
        </item>
        <item>
            <title>how to make wig/synthetic hair looks more real?</title>
            <link>http://forum.lowyat.net/topic/1166427</link>
            <description>bcos those synthetic wig looks shiny and some if we walk under those strong light, it will looks more shiny than real hair...anyone can share experience on how to make the synthetic hair looks more real ma?...i&amp;#39;ve google dis question n found out dat,brushin some baby powder might help,or spray apple cider vinegar on it..@@~ comment anyone?...</description>
            <author>redgirl</author>
            <category>Trends + Fashion</category>
            <pubDate>Thu, 17 Sep 2009 12:38:32 +0800</pubDate>
        </item>
        <item>
            <title>New born puppy do not want to drink from mom?</title>
            <link>http://forum.lowyat.net/topic/1120421</link>
            <description>my new born puppy is 1 day old and do not want to drink from her mom &amp;#33;&amp;#33;&amp;#33; what should i do?....i got take a bottle of pet milk to feed her...but she only managed to drink few only..what should i do&amp;#33;&amp;#33;&amp;#33; anyone can teach??&amp;#33;&amp;#33;&amp;#33;...getting worried to her edy...cos her body abit cold cold...&amp;gt;.&amp;lt;&amp;#33;</description>
            <author>redgirl</author>
            <category>Pets Wonderland</category>
            <pubDate>Wed, 05 Aug 2009 20:53:40 +0800</pubDate>
        </item>
        <item>
            <title>Virus? or wat isit?</title>
            <link>http://forum.lowyat.net/topic/1120064</link>
            <description>hope it&amp;#39;s the right place to ask here&amp;#33;&amp;#33;&amp;#33;...the icon n properties window dat i circle out is it...anyone can tel me wat is it?i&amp;#39;ve been deleted it each time i c it...but after restart,it&amp;#39;s there oso&amp;#33;&amp;#33;&amp;#33;...</description>
            <author>redgirl</author>
            <category>Technical Support</category>
            <pubDate>Wed, 05 Aug 2009 15:08:54 +0800</pubDate>
        </item>
        <item>
            <title>help&amp;#33; Rounding mechanism help&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/1113672</link>
            <description>here is the question i got :&lt;br /&gt;&lt;br /&gt;Rounding Mechanism to avoid the usage of one cent in the total amount paid by customers. &lt;br /&gt;Prices ending with 1 or 2 cent will be rounded down to 0 cent, prices ending with 3 or 4 cent will be rounded up to 5 sen, prices ending with 6 or 7 cent will be rounded down to 5 cent and prices ending with 8 or 9 sen will be rounded up to 10 cent. Prices ending with 0 or 5 cent will remain unchanged. &lt;br /&gt;reads 10 prices of products and stores them in an array which then calculates the total price and its corresponding rounded total price to be paid by customers according to the Rounding Mechanism. Display the 10 product prices stored, the total price and its corresponding rounded total price as shown in the user interface screen below. &lt;br /&gt;&lt;br /&gt;Product Price &lt;br /&gt;(&amp;#036;) &lt;br /&gt;------------- &lt;br /&gt;7.91 &lt;br /&gt;16.59 &lt;br /&gt;42.86 &lt;br /&gt;28.38 &lt;br /&gt;123.45 &lt;br /&gt;99.72 &lt;br /&gt;54.63 &lt;br /&gt;35.27 &lt;br /&gt;71.04 &lt;br /&gt;80.12 &lt;br /&gt;------------- &lt;br /&gt;Total Price(&amp;#036;) 559.97 &lt;br /&gt;------------- &lt;br /&gt;Total Price Rounded(&amp;#036;) 559.95 &lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Write a program in C based on the above algorithm using the following declaration: &lt;br /&gt;&lt;br /&gt;double productPrice[10], totalPrice, totalRoundedPrice;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;------------------------------------------------------------------------------------&lt;br /&gt;&lt;b&gt;here wat i make using TURBO C and only managed to do until IF statements...anyone can help?...wat else should i do?..or is there anythin wrg with my coding??&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;#include&amp;lt;stdio.h&amp;gt;&lt;br /&gt;#include&amp;lt;conio.h&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;main()&lt;br /&gt;&lt;br /&gt;{	int count;&lt;br /&gt;	float productprice[10];&lt;br /&gt;	double totalprice=0;&lt;br /&gt;	clrscr();&lt;br /&gt;	for(count=1;count&amp;lt;11;count++)&lt;br /&gt;&lt;br /&gt;	{	printf(&amp;quot;Product Price(RM) %d : &amp;quot;,count);&lt;br /&gt;		scanf(&amp;quot;%f&amp;quot;,&amp;amp;productprice[count]);&lt;br /&gt;		totalprice=totalprice+productprice[count];&lt;br /&gt;&lt;br /&gt;	}&lt;br /&gt;&lt;br /&gt;	printf(&amp;quot;Total Price = %.2f&amp;#092;n&amp;quot;,totalprice);&lt;br /&gt;&lt;br /&gt;	{      	long int x,z;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;		x=totalprice*100;&lt;br /&gt;		z=x%10;&lt;br /&gt;		z;&lt;br /&gt;		printf(&amp;quot;&amp;#092;n number = %ld&amp;quot;,x);&lt;br /&gt;		printf(&amp;quot;&amp;#092;n remainder: %d&amp;quot;,z);&lt;br /&gt;		printf(&amp;quot;&amp;#092;n The Total Rounded Price is: &amp;quot;);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;		if (z&amp;lt;=2)&lt;br /&gt;		printf(&amp;quot;%d&amp;quot;,x-z);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;	}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;	return 0;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;}</description>
            <author>redgirl</author>
            <category>Codemasters</category>
            <pubDate>Thu, 30 Jul 2009 16:26:59 +0800</pubDate>
        </item>
        <item>
            <title>NEED HELP in HP COMPAQ PRESARIO CQ40-401AU&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/1111676</link>
            <description>hellow~ all~ recently i just bought a new laptop, compaq cq40-401au, and found out dat i cannot use the hotley to adjust brightness?? why is dis happen? i only can adjust brightness by using the software Catalyst Control Center.... i cannot use the hot key fn+f7/f8 to chg it&amp;#39;s brightness....other hot key works fine...and currently using windows xp professional service pack 3...anyone can help me figure out? because hotkey are better and convenience if i turn on full screen...&lt;br /&gt;&lt;br /&gt;any reply will be appreciate&amp;#33;&amp;#33;&amp;#33; thx~&amp;#33;&amp;#33;</description>
            <author>redgirl</author>
            <category>Mobile Computing</category>
            <pubDate>Tue, 28 Jul 2009 21:07:18 +0800</pubDate>
        </item>
    </channel>
</rss>
