<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by gantz52</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Fri, 01 May 2026 02:42:06 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Nexus 7 32gb for sale</title>
            <link>http://forum.lowyat.net/topic/2871341</link>
            <description>&lt;b&gt;Item(s):&lt;/b&gt; nexus 7 32gb for sale&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Package includes:&lt;/b&gt;full set(charger,box),free nilkin case(auto sleep function) worth RM80 and rubber case&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Price:&lt;/b&gt;RM650&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Warranty:&lt;/b&gt; until october 2013&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Dealing method:&lt;/b&gt;prefer COD/POS(add RM6)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Location of seller:&lt;/b&gt;Temerloh/mentakab&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact method/details:&lt;/b&gt;0179260238(whatsapp)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Item(s) conditions:&lt;/b&gt;9/10(no dent,screen protector applied since day 1&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Picture:&lt;/b&gt;[attachmentid=3517113]/[attachmentid=3517118]&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Reason for sale:&lt;/b&gt;</description>
            <author>gantz52</author>
            <category>Garage Sales Archive</category>
            <pubDate>Wed, 03 Jul 2013 11:35:29 +0800</pubDate>
        </item>
        <item>
            <title>NEED HELP WITH NAME</title>
            <link>http://forum.lowyat.net/topic/1810774</link>
            <description>#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;main()&lt;br /&gt;{&lt;br /&gt;	char name[25];&lt;br /&gt;        printf(&amp;quot;&amp;#092;nyour name :&amp;quot;);&lt;br /&gt;	scanf(&amp;quot;%s&amp;quot;, &amp;amp;name);&lt;br /&gt;&lt;br /&gt;how to to make a program that can printf a name with space..example &amp;quot;Robin Hood&amp;quot;..if i write this name, it will not come off..sorry for noob question</description>
            <author>gantz52</author>
            <category>Codemasters</category>
            <pubDate>Mon, 28 Mar 2011 14:55:44 +0800</pubDate>
        </item>
        <item>
            <title>NEED HELP</title>
            <link>http://forum.lowyat.net/topic/1788460</link>
            <description>How to solve this programing..&lt;br /&gt;&lt;br /&gt;&amp;quot;Write a weather-calculator program but make it a general-purpose program that computes the average of any number of days. You will have to count the number  of temperature enters so that you will have that count when you compute the final average&amp;quot;&lt;br /&gt;&lt;br /&gt;how to make this??very hard lo.. &lt;!--emo&amp;:(--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sad.gif' border='0' style='vertical-align:middle' alt='sad.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;I just got this..but how to make this program calculated of any number of day.. &lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;//This program calculate sum and average of temperature for 5 day .&amp;#40;NOTE&amp;#58;PLEASE ENTER TEMPERATURE IN CELSIUS&amp;#41;&lt;br /&gt;&lt;br /&gt;#include &amp;#60;stdio.h&amp;#62;&lt;br /&gt;#include &amp;#60;cmath&amp;#62;&lt;br /&gt;main&amp;#40;&amp;#41;&lt;br /&gt;{&lt;br /&gt;	float num1,num2,num3,num4,num5,sum,avg;&lt;br /&gt;&lt;br /&gt;	printf&amp;#40;&amp;#34;&amp;#092;nTemperature day 1 &amp;#58;&amp;#34;&amp;#41;;&lt;br /&gt;	scanf&amp;#40;&amp;#34;%f&amp;#34;, &amp;amp;num1&amp;#41;;&lt;br /&gt;	printf&amp;#40;&amp;#34;&amp;#092;nTemperature day 2&amp;#58;&amp;#34;&amp;#41;;&lt;br /&gt;	scanf&amp;#40;&amp;#34;%f&amp;#34;, &amp;amp;num2&amp;#41;;&lt;br /&gt;	printf&amp;#40;&amp;#34;&amp;#092;nTemperature day 3 &amp;#58;&amp;#34;&amp;#41;;&lt;br /&gt;	scanf&amp;#40;&amp;#34;%f&amp;#34;, &amp;amp;num3&amp;#41;;&lt;br /&gt;	printf&amp;#40;&amp;#34;&amp;#092;nTemperature day 4 &amp;#58;&amp;#34;&amp;#41;;&lt;br /&gt;	scanf&amp;#40;&amp;#34;%f&amp;#34;, &amp;amp;num4&amp;#41;;&lt;br /&gt;	printf&amp;#40;&amp;#34;&amp;#092;nTemperature day 5 &amp;#58;&amp;#34;&amp;#41;;&lt;br /&gt;	scanf&amp;#40;&amp;#34;%f&amp;#34;, &amp;amp;num5&amp;#41;;&lt;br /&gt;&lt;br /&gt;	sum = num1 + num2 + num3 + num4 + num5;&lt;br /&gt;&lt;br /&gt;	printf&amp;#40;&amp;#34;&amp;#092;nTotal temparature 5 day is %.2f Celsius&amp;#34;, sum&amp;#41;;&lt;br /&gt;&lt;br /&gt;	avg = sum/5;&lt;br /&gt;&lt;br /&gt;	printf&amp;#40;&amp;#34;&amp;#092;nAverage temperature 5 &amp;nbsp;is %.2f Celsius&amp;#34;, avg &amp;#41;;&lt;br /&gt;	printf&amp;#40;&amp;#34;&amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt;	return 0;&lt;br /&gt;}&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>gantz52</author>
            <category>Codemasters</category>
            <pubDate>Sat, 12 Mar 2011 10:44:00 +0800</pubDate>
        </item>
    </channel>
</rss>
