<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by isaacng97</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Tue, 14 Jul 2026 12:50:27 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>[WTS] Brand New Razer Huntsman Elite</title>
            <link>http://forum.lowyat.net/topic/5226864</link>
            <description>&lt;b&gt;Item(s):&lt;/b&gt; RAZER HUNTSMAN ELITE (RED SWITCH)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Package includes:&lt;/b&gt; RAZER HUNTSMAN ELITE, Razer arm rest&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Price:&lt;/b&gt; 850 inlcuding postage&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Warranty:&lt;/b&gt; N/A&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Dealing method:&lt;/b&gt; Postage&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Location:&lt;/b&gt; Petaling Jaya&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact method/details:&lt;/b&gt; 0169256556 whatsapp&lt;br /&gt;---&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Item(s) conditions:&lt;/b&gt; Brand New (havent open yet)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Picture:&lt;/b&gt; uploaded&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Reason for sale:&lt;/b&gt; RMA unit. I didnt want red switch because keypress too light.&lt;br /&gt;&lt;br /&gt;&lt;a href='https://pictr.com/image/BdZEGJ' target='_blank'&gt;&lt;img src='https://pictr.com/images/2021/12/23/BdZEGJ.md.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='https://pictr.com/image/BdZEGJ' target='_blank'&gt;&lt;img src='https://pictr.com/images/2021/12/23/BdZEGJ.md.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;</description>
            <author>isaacng97</author>
            <category>Mice, Keyboards &amp;amp; Controllers Garage Sales</category>
            <pubDate>Thu, 23 Dec 2021 13:08:39 +0800</pubDate>
        </item>
        <item>
            <title>TnB Smart Meter</title>
            <link>http://forum.lowyat.net/topic/4550573</link>
            <description>hi everyone, TnB has been installing smart meter in household area. I just wanna know what are the features offered by that smart meter. I noticed that there an apps called mytnb, anyone tried that before, maybe share what are the stuff in the apps.</description>
            <author>isaacng97</author>
            <category>Serious Kopitiam</category>
            <pubDate>Fri, 23 Mar 2018 22:24:40 +0800</pubDate>
        </item>
        <item>
            <title>arduino+bluetooth+andriod</title>
            <link>http://forum.lowyat.net/topic/4069834</link>
            <description>hi guys, i need some help here&lt;br /&gt;so basically i need to receive multiple sensor data (temperature,humidity,ldr,potentimeter)&lt;br /&gt;but then i got stuck with the way i receive the data from arduino to andriod&lt;br /&gt;i dont know how to build the block in mit app inventor 2&lt;br /&gt;what my problem is the data will move from textbox2 to textbox1 with is not what i want&lt;br /&gt;i want them to be sync in parallel&lt;br /&gt;</description>
            <author>isaacng97</author>
            <category>Codemasters</category>
            <pubDate>Fri, 30 Sep 2016 23:47:51 +0800</pubDate>
        </item>
        <item>
            <title>How to add pointer / pass by value/ reference?</title>
            <link>http://forum.lowyat.net/topic/3963565</link>
            <description>I can&amp;#39;t pass my results to display function.... any way to do that?&lt;br /&gt;&lt;br /&gt;[CODE]&lt;br /&gt;#include &amp;lt;iostream&amp;gt;&lt;br /&gt;using namespace std;&lt;br /&gt;void readData(char&amp;amp; opt,int size,float resistor[]);&lt;br /&gt;int calculate(char&amp;amp; opt,int size,float totalSeries,float resistor[],float formulaParallel,float totalParallel);&lt;br /&gt;void display(char&amp;amp; opt,float totalSeries,float totalParallel);&lt;br /&gt;&lt;br /&gt;int main()&lt;br /&gt;{&lt;br /&gt;	char opt;&lt;br /&gt;	int size;&lt;br /&gt;	float resistor[size];&lt;br /&gt;	float totalSeries=0;float formulaParallel=0;float totalParallel=0;&lt;br /&gt;	&lt;br /&gt;	cout &amp;lt;&amp;lt; &amp;quot;Series or Parallel&amp;quot;&amp;lt;&amp;lt; endl;&lt;br /&gt;	cin &amp;gt;&amp;gt; opt;&lt;br /&gt;	cout &amp;lt;&amp;lt; &amp;quot;Number of resistor&amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;	cin &amp;gt;&amp;gt; size;&lt;br /&gt;	&lt;br /&gt;	readData(opt,size,resistor);&lt;br /&gt;	calculate(opt,size,totalSeries,resistor,formulaParallel,totalParallel);&lt;br /&gt;	display(opt, totalSeries,totalParallel);&lt;br /&gt;	&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void readData(char&amp;amp; opt,int size,float resistor[])&lt;br /&gt;{&lt;br /&gt;	for (int i=0;i&amp;lt;size;i++)&lt;br /&gt;	{&lt;br /&gt;		cout &amp;lt;&amp;lt; &amp;quot;Enter value of resistor&amp;quot; &amp;lt;&amp;lt; i+1 &amp;lt;&amp;lt; &amp;quot; : &amp;quot; ;&lt;br /&gt;		cin &amp;gt;&amp;gt; resistor[i];	&lt;br /&gt;	}	&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;int calculate(char&amp;amp; opt,int size,float totalSeries,float resistor[],float formulaParallel,float totalParallel)&lt;br /&gt;{&lt;br /&gt;	for (int i=0;i&amp;lt;size;i++)&lt;br /&gt;	{	&lt;br /&gt;		totalSeries += resistor[i];&lt;br /&gt;	}&lt;br /&gt;	for (int i=0;i&amp;lt;size;i++)&lt;br /&gt;	{&lt;br /&gt;      	formulaParallel += 1/resistor[i];&lt;br /&gt;   		totalParallel = 1/formulaParallel;&lt;br /&gt;	}	&lt;br /&gt;&lt;br /&gt;	return totalSeries;&lt;br /&gt;	return totalParallel;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void display(char&amp;amp; opt,float totalSeries,float totalParallel)&lt;br /&gt;{&lt;br /&gt;	switch (opt)&lt;br /&gt;	{&lt;br /&gt;		case &amp;#39;s&amp;#39;:&lt;br /&gt;		case &amp;#39;S&amp;#39;: 	cout &amp;lt;&amp;lt; totalSeries &amp;lt;&amp;lt; &amp;quot; is the total resistance&amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;		break;&lt;br /&gt;		case &amp;#39;p&amp;#39;:&lt;br /&gt;        case &amp;#39;P&amp;#39;: 	cout &amp;lt;&amp;lt; totalParallel &amp;lt;&amp;lt; &amp;quot; is the total resistance&amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;		break; 			&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;</description>
            <author>isaacng97</author>
            <category>Codemasters</category>
            <pubDate>Wed, 01 Jun 2016 21:07:49 +0800</pubDate>
        </item>
        <item>
            <title>c++ function problem</title>
            <link>http://forum.lowyat.net/topic/3959658</link>
            <description>I&amp;#39;m doing series and parallel counter, i tried to divide everything with functions, but then i dont know what to do with this function.&lt;br /&gt;Do i need to use 2 functions in this case or any other solutions?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;int readData(char option,int arraySize,int R1)&lt;br /&gt;{&lt;br /&gt;	cout&amp;lt;&amp;lt;&amp;quot;Parallel or Series Resistors? Enter &amp;#092;&amp;quot;S&amp;#092;&amp;quot; or &amp;#092;&amp;quot;P&amp;#092;&amp;quot;.&amp;quot;&amp;lt;&amp;lt;endl;    &lt;br /&gt;    cin&amp;gt;&amp;gt;option;                              &lt;br /&gt;&lt;br /&gt;    while( option &amp;#33;= &amp;#39;S&amp;#39; &amp;amp;&amp;amp; option &amp;#33;= &amp;#39;P&amp;#39; &amp;amp;&amp;amp; option &amp;#33;= &amp;#39;s&amp;#39; &amp;amp;&amp;amp; option &amp;#33;= &amp;#39;p&amp;#39;)&lt;br /&gt;    {&lt;br /&gt;    cout &amp;lt;&amp;lt; &amp;quot;Invalid selection&amp;#33; &amp;quot;&amp;lt;&amp;lt;endl;    &lt;br /&gt;        //goto again;        &lt;br /&gt;	}      &lt;br /&gt;	&lt;br /&gt;	if (option == &amp;#39;S&amp;#39; &amp;amp;&amp;amp; option == &amp;#39;s&amp;#39;){&lt;br /&gt;		cout &amp;lt;&amp;lt; &amp;quot;&amp;#092;nEnter the number of resistor in Series : &amp;quot;; &lt;br /&gt;    	cin &amp;gt;&amp;gt; arraySize;   &lt;br /&gt;    	return arraySize;&lt;br /&gt;	}else {&lt;br /&gt;		cout &amp;lt;&amp;lt; &amp;quot;&amp;#092;nEnter the number of resistor in Parallel : &amp;quot;; &lt;br /&gt;    	cin &amp;gt;&amp;gt; arraySize;  &lt;br /&gt;    	return arraySize;&lt;br /&gt;	}&lt;br /&gt;      &lt;br /&gt;	cout &amp;lt;&amp;lt; &amp;quot;&amp;#092;nEnter values for resistors &amp;quot; &amp;lt;&amp;lt;endl; &lt;br /&gt;    for( int i = 0; i &amp;lt; arraySize; i++ )                      &lt;br /&gt;    {&lt;br /&gt;        cout &amp;lt;&amp;lt; &amp;quot;Resistor &amp;quot; &amp;lt;&amp;lt; i+1 &amp;lt;&amp;lt; &amp;quot; :&amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;	    cin &amp;gt;&amp;gt; R1[i];&lt;br /&gt;	    return R1[i];&lt;br /&gt;    }	          &lt;br /&gt;}</description>
            <author>isaacng97</author>
            <category>Codemasters</category>
            <pubDate>Fri, 27 May 2016 22:08:24 +0800</pubDate>
        </item>
        <item>
            <title>help with C++ array and function</title>
            <link>http://forum.lowyat.net/topic/3931898</link>
            <description>#include &amp;lt;iostream&amp;gt;&lt;br /&gt;using namespace std;&lt;br /&gt;#define size 2&lt;br /&gt;int BMI[size];&lt;br /&gt;int weight[size];&lt;br /&gt;int height[size];&lt;br /&gt;int calBMI(int , int );&lt;br /&gt;void readData();&lt;br /&gt;void display();&lt;br /&gt;&lt;br /&gt;int main()&lt;br /&gt;{&lt;br /&gt;	&lt;br /&gt;	for (int i=0;i&amp;lt;size;i++)&lt;br /&gt;	{	&lt;br /&gt;		&lt;br /&gt;		cout &amp;lt;&amp;lt; &amp;quot;Enter weight for student &amp;quot; &amp;lt;&amp;lt; i+1 &amp;lt;&amp;lt; endl;&lt;br /&gt;		cin &amp;gt;&amp;gt; weight[i];&lt;br /&gt;		cout &amp;lt;&amp;lt; &amp;quot;Enter height for student &amp;quot; &amp;lt;&amp;lt; i+1 &amp;lt;&amp;lt; endl;&lt;br /&gt;		cin &amp;gt;&amp;gt; height[i];	&lt;br /&gt;		void readData();&lt;br /&gt;		void calBMI();&lt;br /&gt;		void display();&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void readData()&lt;br /&gt;{&lt;br /&gt;	for (int i=0;i&amp;lt;size;i++)&lt;br /&gt;	cout &amp;lt;&amp;lt; weight[i] &amp;lt;&amp;lt; &amp;quot;&amp;#092;t&amp;quot; &amp;lt;&amp;lt; height[i] &amp;lt;&amp;lt; endl;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;int calBMI(int , int )&lt;br /&gt;{&lt;br /&gt;	for (int i=0;i&amp;lt;size;i++)&lt;br /&gt;	BMI[i] = weight[i]  * height[i];	&lt;br /&gt;	return (BMI);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void display()&lt;br /&gt;{&lt;br /&gt;	for (int i=0;i&amp;lt;size;i++)&lt;br /&gt;	cout &amp;lt;&amp;lt; BMI[i] &amp;lt;&amp;lt; &amp;quot;is his BMI &amp;quot;&amp;lt;&amp;lt; endl;&lt;br /&gt;}&lt;br /&gt;</description>
            <author>isaacng97</author>
            <category>Codemasters</category>
            <pubDate>Mon, 25 Apr 2016 23:19:02 +0800</pubDate>
        </item>
        <item>
            <title>Transfer to UM</title>
            <link>http://forum.lowyat.net/topic/3872337</link>
            <description>Can i transfer my diploma credit in UTeM to UM?&lt;br /&gt;Is electrical engineering in UM better?&lt;br /&gt;Thanks in advance.</description>
            <author>isaacng97</author>
            <category>Education Essentials</category>
            <pubDate>Fri, 19 Feb 2016 17:27:32 +0800</pubDate>
        </item>
        <item>
            <title>Xiaomi mi4 gps problem</title>
            <link>http://forum.lowyat.net/topic/3871295</link>
            <description>Hi there,&lt;br /&gt;my Xiaomi Mi4 (china ver) just cant lock the gps location.&lt;br /&gt;I tried with google map and waze.&lt;br /&gt;Waze complete not functioning and google map still can locate but the navigation will keep changing the pointer, notification will state &amp;quot;searching for gps&amp;quot; and halfway will say &amp;quot;gps signal lost&amp;quot;. &lt;br /&gt;Kindly help me how to solve this</description>
            <author>isaacng97</author>
            <category>Mobile Phones and Tablets</category>
            <pubDate>Thu, 18 Feb 2016 19:24:07 +0800</pubDate>
        </item>
        <item>
            <title>Asus K401lb</title>
            <link>http://forum.lowyat.net/topic/3589995</link>
            <description>the resolution is at full hd 1920 x 1080 .&lt;br /&gt;however when i open some of the software..the display is blur..for others pictures are clear as full hd..need help ..i checked the graphic card and i see no problem</description>
            <author>isaacng97</author>
            <category>Technical Support</category>
            <pubDate>Tue, 26 May 2015 23:16:04 +0800</pubDate>
        </item>
        <item>
            <title>UTeM anyone?</title>
            <link>http://forum.lowyat.net/topic/3571853</link>
            <description>anyone get diploma in electrical engineering???&lt;br /&gt;i going</description>
            <author>isaacng97</author>
            <category>Education Essentials</category>
            <pubDate>Thu, 07 May 2015 14:41:13 +0800</pubDate>
        </item>
        <item>
            <title>c++ wechat or whatsapp group?</title>
            <link>http://forum.lowyat.net/topic/3565704</link>
            <description>anyone free to help me ??? i&amp;#39;m a beginner in c++</description>
            <author>isaacng97</author>
            <category>Codemasters</category>
            <pubDate>Wed, 29 Apr 2015 23:02:32 +0800</pubDate>
        </item>
        <item>
            <title>jpa appeal letter</title>
            <link>http://forum.lowyat.net/topic/3561883</link>
            <description>how to write the 100 words jpa appeal letter?</description>
            <author>isaacng97</author>
            <category>Education Essentials</category>
            <pubDate>Sat, 25 Apr 2015 21:23:07 +0800</pubDate>
        </item>
        <item>
            <title>what is a string in c++</title>
            <link>http://forum.lowyat.net/topic/3561878</link>
            <description>can i know what&amp;#39;s the use of string??in c++</description>
            <author>isaacng97</author>
            <category>Codemasters</category>
            <pubDate>Sat, 25 Apr 2015 21:15:19 +0800</pubDate>
        </item>
        <item>
            <title>Nasi ...</title>
            <link>http://forum.lowyat.net/topic/3556107</link>
            <description>I need to know what kind of malay food can last until the second day???&lt;br /&gt;note: nasi ........ or mee .......&lt;br /&gt;</description>
            <author>isaacng97</author>
            <category>Food &amp;amp; Flavours</category>
            <pubDate>Sun, 19 Apr 2015 18:56:49 +0800</pubDate>
        </item>
        <item>
            <title>STPM SUBJECTS</title>
            <link>http://forum.lowyat.net/topic/3548644</link>
            <description>i wanted to study engineering &lt;br /&gt;what course should i take for stpm??</description>
            <author>isaacng97</author>
            <category>Education Essentials</category>
            <pubDate>Sat, 11 Apr 2015 15:24:27 +0800</pubDate>
        </item>
        <item>
            <title>Whatsapp on ipad</title>
            <link>http://forum.lowyat.net/topic/3540065</link>
            <description>how to install whatsapp in ipad without jailbreak</description>
            <author>isaacng97</author>
            <category>Mobile Phones and Tablets</category>
            <pubDate>Wed, 01 Apr 2015 22:21:24 +0800</pubDate>
        </item>
        <item>
            <title>Can change course?</title>
            <link>http://forum.lowyat.net/topic/3538613</link>
            <description>can i change the course i get offered by UPU after i go into the Uni?i mean diploma</description>
            <author>isaacng97</author>
            <category>Education Essentials</category>
            <pubDate>Tue, 31 Mar 2015 16:47:34 +0800</pubDate>
        </item>
        <item>
            <title>Is UMP a good uni for E&amp;amp;E?</title>
            <link>http://forum.lowyat.net/topic/3537238</link>
            <description>I want to study E&amp;amp;E engineering.can i ask is UMP a good place for E&amp;amp;E ?&lt;br /&gt;I applied UTem/Unimap /UTHM, can i know which Uni is better?&lt;br /&gt;I&amp;#39;m taking diploma&lt;br /&gt;</description>
            <author>isaacng97</author>
            <category>Education Essentials</category>
            <pubDate>Mon, 30 Mar 2015 11:10:23 +0800</pubDate>
        </item>
        <item>
            <title>Is computer engineer a sub-branch?</title>
            <link>http://forum.lowyat.net/topic/3527910</link>
            <description>i want to know whether computer engineering is a sub branch of electrical engineering?&lt;br /&gt;if i pursue to electrical engineering..can i pursue to computer engineering when i go degree?</description>
            <author>isaacng97</author>
            <category>Education Essentials</category>
            <pubDate>Fri, 20 Mar 2015 10:03:44 +0800</pubDate>
        </item>
        <item>
            <title>Asus K551LN / Asus N551JK</title>
            <link>http://forum.lowyat.net/topic/3524251</link>
            <description>Anyone dealing these 2 models?&lt;br /&gt;Can give me the price?&lt;br /&gt;both with intel core i7&lt;br /&gt;which one available</description>
            <author>isaacng97</author>
            <category>Mobile Computing</category>
            <pubDate>Mon, 16 Mar 2015 16:05:08 +0800</pubDate>
        </item>
    </channel>
</rss>
