<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Remake of BEE1223 by Nurulfadzilah Hasan</title>
      <link>https://padlet.com/nurulfadzilah/cpa1617</link>
      <description>class discussion</description>
      <language>en-us</language>
      <pubDate>2017-02-28 06:26:23 UTC</pubDate>
      <lastBuildDate>2026-03-14 05:31:47 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title></title>
         <author>samworrior</author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159575335</link>
         <description><![CDATA[<div><br>suhaimi<br>#include &lt;stdio.h&gt;<br><br>#include&nbsp; &lt;stdlib.h&gt;<br><br><br><br>int main()<br><br>{<br><br><br><br>&nbsp; &nbsp; int number;<br><br>&nbsp; &nbsp; printf("Select a number between 1 to 5 and i will tell your lucky colour\n");<br><br>&nbsp; &nbsp; scanf("%d", &amp;number);<br><br><br><br>&nbsp; &nbsp; switch(number)<br><br>&nbsp; &nbsp; {<br><br>&nbsp; &nbsp; &nbsp; &nbsp; case 1:<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("Your lucky colour is GREEN");<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br><br><br><br>&nbsp; &nbsp; &nbsp; &nbsp; case 2:<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("Your lucky colour&nbsp; is YELLOW");<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br><br><br><br><br><br>&nbsp; &nbsp; &nbsp; &nbsp; case 3:<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("Your lucky colour&nbsp; is PURPLE");<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br><br><br><br>&nbsp; &nbsp; &nbsp; &nbsp; case 4:<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("Your lucky colour&nbsp; is BLUE");<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br><br><br><br><br><br>&nbsp; &nbsp; &nbsp; &nbsp; case 5:<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("Your lucky colour&nbsp; is ORANGE");<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br><br><br><br><br><br>&nbsp; &nbsp; &nbsp; &nbsp; // operator is doesn't match any case constant (+, -, *, /)<br><br>&nbsp; &nbsp; &nbsp; &nbsp; default:<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("Error! the number that you entered is out of range");<br><br>&nbsp; &nbsp; }<br><br><br><br>&nbsp; &nbsp; return 0;<br><br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-13 07:01:43 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159575335</guid>
      </item>
      <item>
         <title>EA15111</title>
         <author>ikrammrsln98</author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159575486</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;
<br>#include &lt;stdlib.h&gt;
<br>
<br>int main()
<br>{
<br>   int num;
<br>   printf("Please enter your lucky number 1 to 5\n");
<br>   scanf("%d",&amp;num);
<br>   switch (num)
<br>   {
<br>   case 1:
<br>    printf("your lucky colour is green\n");
<br>    break;
<br>    case 2:
<br>    printf("your lucky colour is yellow\n");
<br>    break;
<br>    case 3:
<br>    printf("your lucky colour is purple\n");
<br>    break;
<br>    case 4:
<br>    printf("your lucky colour is blue\n");
<br>    break;
<br>    case 5:
<br>    printf("your lucky colour is orange\n");
<br>    break;
<br>    default:
<br>        printf("your number is out of range\n");
<br>   }
<br>    return 0;
<br>}
<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-13 07:03:36 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159575486</guid>
      </item>
      <item>
         <title>NOUPIZ</title>
         <author>rabbani_abdulrahim</author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159575510</link>
         <description><![CDATA[<div>
<br>
<br>int main() {
<br>    int colour = 1;
<br>    printf("Please choose a color \n 1:Green \n 2:Yellow \n 3:Purple \n 4:Blue \n 5;Orange \n ");
<br>    scanf("%d", &amp;colour);
<br>
<br>    switch (colour) {
<br>        case 1:
<br>            printf("you chose Green colour \n");
<br>            break;
<br>        case 2:
<br>            printf("you chose Yellow colour \n");
<br>            break;
<br>        case 3:
<br>            printf("you chose Purple colour \n");
<br>        case 4:
<br>            printf("you chose Blue colour \n");
<br>            break;
<br>        case 5:
<br>            printf("you chose orange colour \n");
<br>            break;
<br>        default:
<br>            printf("you did not choose any colour \n");
<br>    }
<br>    return 0;
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-13 07:03:51 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159575510</guid>
      </item>
      <item>
         <title>EA16100</title>
         <author>arifhakimiramlee1</author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159575527</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;
<br>#include &lt;stdlib.h&gt;
<br>
<br>int main()
<br>{
<br>    int num;
<br>    printf("Enter a number from 1 to 5.\n");
<br>    scanf("%d",&amp;num);
<br>
<br>    switch(num)
<br>    {
<br>    case 1:
<br>        printf("Congratulations! Your lucky colour is Green.",num);
<br>        break;
<br>    case 2:
<br>        printf("Congratulations! Your lucky colour is Yellow.",num);
<br>        break;
<br>    case 3:
<br>        printf("Congratulations! Your lucky colour is Purple.",num);
<br>        break;
<br>    case 4:
<br>        printf("Congratulations! Your lucky colour is Blue.",num);
<br>        break;
<br>    default:
<br>        printf("Congratulations! Your lucky colour is Orange.",num);
<br>
<br>    }
<br>
<br>
<br>    return 0;
<br>}
<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-13 07:04:01 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159575527</guid>
      </item>
      <item>
         <title>EA16073</title>
         <author></author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159575544</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/181388446/05e4aba1736f1d5851ea7f9aa3fa8a74/lucky_colour.docx" />
         <pubDate>2017-03-13 07:04:08 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159575544</guid>
      </item>
      <item>
         <title>EA16103                                    #include &lt;stdio.h&gt;#include&lt;stdlib.h&gt;                                          int main(){int colour;printf(&quot;Enter a number from 1 to 5 to choose a color\n&quot;);scanf(&quot;%d&quot;,&amp;colour);switch (colour){	case 1:			printf (&quot;Your color is green \n&quot;);			printf(&quot;Congratulation! This is your lucky color, wear this color everyday..(^.^)\n&quot;);			break;	case 2:			printf (&quot;Your color is Yellow \n&quot;);			printf(&quot;Congratulation! This is your lucky color, wear this color everyday..(^.^)\n&quot;);			break;	case 3:			printf (&quot;Your color is Purple \n&quot;);			printf(&quot;Congratulation! This is your lucky color, wear this color everyday..(^.^)\n&quot;);			break;	case 4:			printf (&quot;Your color is Blue \n&quot;);			printf(&quot;Congratulation! This is your lucky color, wear this color everyday..(^.^)\n&quot;);			break;    case 5:			printf (&quot;Your color is Orange \n&quot;);			printf(&quot;Congratulation! This is your lucky color, wear this color everyday..(^.^)\n&quot;);			break;default :			printf (&quot;Your number is not available, you are very unlucky today, pray to your god everyday...\nGood luck!!! \n&quot;);}     return 0;}</title>
         <author>izzat1998</author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159575572</link>
         <description><![CDATA[<div><br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-13 07:04:29 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159575572</guid>
      </item>
      <item>
         <title>EA16102</title>
         <author></author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159575597</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;
<br>#include &lt;stdlib.h&gt;
<br>
<br>int main()
<br>{
<br>    int colour;
<br>
<br>    printf("Enter a random number from 1 to 5.\n");
<br>    scanf("%d",&amp;colour);
<br>
<br>    switch(colour)
<br>    {
<br>    case 1:
<br>        printf("Your lucky colour is GREEN.\n");
<br>        break;
<br>
<br>    case 2:
<br>        printf("Your lucky colour is YELLOW.\n");
<br>        break;
<br>
<br>    case 3:
<br>        printf("Your lucky colour is PURPLE.\n");
<br>        break;
<br>
<br>    case 4:
<br>        printf("Your lucky colour is BLUE.\n");
<br>        break;
<br>
<br>    case 5:
<br>        printf("Your lucky colour is ORANGE.\n");
<br>        break;
<br>    }
<br>    return 0;
<br>}
<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-13 07:04:50 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159575597</guid>
      </item>
      <item>
         <title>diva</title>
         <author>maseuteoquicy</author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159575650</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/181388588/8370d209c3b51d92d58c65233558384d/select_lucky_colour.c" />
         <pubDate>2017-03-13 07:05:22 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159575650</guid>
      </item>
      <item>
         <title></title>
         <author>sha_sukri</author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159575980</link>
         <description><![CDATA[<div>EC15053<br><br>#include &lt;stdio.h&gt;<br><br>#include &lt;stdlib.h&gt;<br><br><br><br>int main()<br><br>{<br><br><br><br><br><br>int color;<br><br>printf("-----------------PLEASE SELECT THE NUMBER FROM 1 TO 5 TO CHOOSE YOUR LUCKY COLOUR----------------\n");<br><br>scanf("%d", &amp;color);<br><br>switch(color)<br><br><br><br><br><br>{<br><br>case 1:<br><br>printf("Your color is Green", color);<br><br>break;<br><br>case 2:<br><br>printf("Your color Yellow", color);<br><br>break;<br><br>case 3:<br><br>printf("Your color is Purple", color);<br><br>break;<br><br>case 4:<br><br>printf("Your color is Blue", color);<br><br>break;<br><br>case 5:<br><br>printf("Your color is Orange", color);<br><br>break;<br><br>default:<br><br>printf("You entered an out of range value");<br><br>break;<br><br>}<br><br>return 0;<br><br>}<br><br><br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-13 07:06:18 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159575980</guid>
      </item>
      <item>
         <title>EC16039</title>
         <author></author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159576019</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;</div><div><br></div><div>int main ()<br>{<br>    int num ;</div><div><br></div><div>    printf (" enter no from 1 until 5 \n\n") ;<br>    scanf ("%d", &amp;num) ;</div><div><br></div><div>    switch (num)</div><div><br></div><div>    {<br>    case 1 :<br>        printf(" your lucky colour is green" , num) ;<br>        break ;</div><div><br></div><div>    case 2 :<br>        printf(" your lucky colour is yellow" , num) ;<br>        break ;</div><div><br></div><div>    case 3 :<br>        printf(" your lucky colour is purple" , num) ;<br>        break ;</div><div><br></div><div>    case 4 :<br>        printf(" your lucky colour is blue" , num) ;<br>        break ;</div><div><br></div><div>    default :<br>        printf(" your lucky colour is orange" , num) ;<br>        break ;<br>    }<br>    return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-13 07:06:56 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159576019</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159576068</link>
         <description><![CDATA[<div>EC16015<br><br></div>]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/181389027/c8751429f99be6f6447172c562064c29/main.c" />
         <pubDate>2017-03-13 07:07:39 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159576068</guid>
      </item>
      <item>
         <title>EC15134</title>
         <author>amarfaissal95</author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159576090</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;
<br>
<br>int main() {
<br>
<br>&nbsp; &nbsp; int num;
<br>&nbsp; &nbsp; printf("Enter a number between 1 to 5 and i tell your lucky colour: \n");
<br>&nbsp; &nbsp; scanf("%d", &amp;num);
<br>
<br>&nbsp; &nbsp; switch(num)
<br>&nbsp; &nbsp; {
<br>&nbsp; &nbsp; &nbsp; &nbsp; case 1:
<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("Your lucky colour is GREEN");
<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;
<br>
<br>&nbsp; &nbsp; &nbsp; &nbsp; case 2:
<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("Your lucky colour is YELLOW");
<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;
<br>
<br>&nbsp; &nbsp; &nbsp; &nbsp; case 3:
<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("Your lucky colour is PURPLE");
<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;
<br>
<br>&nbsp; &nbsp; &nbsp; &nbsp; case 4:
<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("Your lucky colour is BLUE");
<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;
<br>
<br>&nbsp; &nbsp; &nbsp; &nbsp; case 5:
<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("Your lucky colour is ORANGE");
<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;
<br>
<br>&nbsp; &nbsp; &nbsp; &nbsp; default:
<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("Error!");
<br>&nbsp; &nbsp; }
<br>
<br>&nbsp; &nbsp; return 0;
<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-13 07:07:57 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159576090</guid>
      </item>
      <item>
         <title>EA150</title>
         <author>zubirhafiz98</author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159576126</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br><br>int main()<br>{<br>&nbsp; &nbsp; int num;<br>&nbsp; &nbsp; printf("Please enter a number from 1 to 5:\n");<br>&nbsp; &nbsp; scanf("%d",&amp;num);<br>&nbsp; &nbsp; switch (num)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; case 1:<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("Green is your colour lucky!",num);<br>&nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; case 2:<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("Yellow is your colour lucky!",num);<br>&nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; case 3:<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("Purple is your colour lucky!",num);<br>&nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; case 4:<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("Blue is your colour lucky!",num);<br>&nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; case 5:<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("Orange is your colour lucky!",num);<br>&nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; default:<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("You entered the wrong value");<br>&nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; }<br><br><br><br>&nbsp; &nbsp; return 0;<br>}<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-13 07:08:21 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159576126</guid>
      </item>
      <item>
         <title>#include &lt;stdio.h&gt;#include &lt;stdlib.h&gt;int main(){    int num;    printf(&quot;Welcome to lucky draw world!\n&quot;);    printf(&quot;Please choose a number from 1 to 5\n&quot;);    scanf(&quot;%d&quot;,&amp;num);    switch(num)    {    case 1:        printf(&quot;Your colour is Green\n&quot;);        break;    case 2:        printf(&quot;Your colour is yellow\n&quot;);        break;    case 3:        printf(&quot;Your colour is purple\n&quot;);        break;    case 4:        printf(&quot;Your colour is blue\n&quot;);        break;    default:        printf(&quot;Your colour is orange\n&quot;);        break;    }    return 0;}</title>
         <author>cheangcs96</author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159576303</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2017-03-13 07:10:21 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159576303</guid>
      </item>
      <item>
         <title>#include #include int main(){int num;    printf(&quot;Please enter a number from 1 to 5: \n&quot;);    scanf(&quot;%d&quot;, &amp;num);    switch (num){  case 1:    printf(&quot;Your lucky colour is green: %d&quot;, num);    break;  case 2:    printf(&quot;Your lucky colour is yellow: %d&quot;, num);    break;  case 3:    printf(&quot;Your lucky colour is purple: %d&quot;, num);    break;  case 4:    printf(&quot;Your lucky colour is blue: %d&quot;, num);    break;  case 5:    printf(&quot;Your lucky colour is orange: %d&quot;, num);    break;  default:    printf(&quot;You are not lucky colour&quot;);    break;}    return 0;}</title>
         <author>rmaf98</author>
         <link>https://padlet.com/nurulfadzilah/cpa1617/wish/159576337</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2017-03-13 07:10:45 UTC</pubDate>
         <guid>https://padlet.com/nurulfadzilah/cpa1617/wish/159576337</guid>
      </item>
   </channel>
</rss>
