<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>My 非凡的 wall by tangjie</title>
      <link>https://padlet.com/7241963/9mgv4n942jbt</link>
      <description>while循环练习代码</description>
      <language>en-us</language>
      <pubDate>2017-11-22 01:30:38 UTC</pubDate>
      <lastBuildDate>2024-08-31 21:55:08 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>1606章子怡</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309136</link>
         <description><![CDATA[<div>int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br><br>int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a-1;&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br><br>int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;&nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br><br>int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;if(a==10000)<br>&nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;break; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1; &nbsp;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br><br>int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+2;&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br><br>int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&lt;=200)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br><br>int a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d&nbsp; ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; a=99;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d&nbsp; ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a-1;&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:32:06 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309136</guid>
      </item>
      <item>
         <title>张大块</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309182</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>&nbsp;int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a-1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}第一次<br>int main()<br>{<br>&nbsp;int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}第二次<br>int main()<br>{<br>&nbsp;int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}<br>int main()<br>{<br>&nbsp;int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>第三次<br>int main()<br>{<br>&nbsp;int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;if(a==10000)<br>&nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>第四次<br>int main()<br>{<br>&nbsp;int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+2;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}第五次</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:32:23 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309182</guid>
      </item>
      <item>
         <title>1606胡鑫茹</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309209</link>
         <description><![CDATA[<div>int a;<br>    a=1;<br>    while(a&lt;=100)<br>    {<br>      printf("%d\n",a);<br>      a=a+1;<br>    }<br> system("pause");<br> return 0;<br><br><br>	int a;<br>    a=100;<br>    while(1)<br>    {<br>      printf("%d\n",a);<br>      a=a+1;<br>    }<br>	system("pause");<br>	return 0;<br><br>int a;<br>    a=100;<br>    while(a&gt;=1)<br>    {<br>      printf(" %d ",a);<br>      a=a-1;<br>    }<br>	system("pause");<br>	return 0;<br><br>	int a;<br>    a=100;<br>    while(1)<br>    {<br>      printf("%d\n",a);<br>      if(a==10000)<br>      {<br>        break;<br>      }<br>      a=a+1;<br>    }<br>	system("pause");<br>	return 0;<br><br>int a;<br>    a=2;<br>    while(a&lt;=100)<br>    {<br>      printf("%d\n",a);<br>      a=a+2;<br>    }<br>	system("pause");<br>	return 0;<br><br> int a;<br>    a=1;<br>    while(a&lt;=100)<br>    {<br>      printf(" %d  ",a);<br>      a=a+1;<br>    }<br>    a=99;<br>    while(a&gt;=1)<br>    {<br>      printf(" %d  ",a);<br>      a=a-1;<br>    }<br>	system("pause");<br>	return 0;<br><br>int a;<br>    a=100;<br>    while(a&lt;=200)<br>    {<br>      printf("%d\n",a);<br>      a=a+1;<br>    }</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:32:36 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309209</guid>
      </item>
      <item>
         <title>1606汪旭辉</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309210</link>
         <description><![CDATA[<div>1：<br>int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>2：<br>int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a-1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>3：<br>int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>4：<br>int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp;{<br>&nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a=a+2;<br>&nbsp;}<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>5：<br>int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&lt;=200)<br>&nbsp; &nbsp; {<br>		printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>	}<br>	system("pause");<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:32:37 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309210</guid>
      </item>
      <item>
         <title>1606王紫叶</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309264</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>    while(1)<br>    {<br>        printf("%d\n",a);<br>        if(a==10000)<br>        {<br>             break;   <br>        }<br>        a=a+1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>    while(1)<br>    {<br>        printf("%d\n",a);<br>        if(a==10000)<br>        {<br>             break;   <br>        }<br>        a=a+1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>    a=1;<br>    while(a&lt;=100)<br>    {<br>        printf("%d\n",a);<br>        a=a+1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br><br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>    while(1)<br>    {<br>        printf("%d\n",a);<br>        a=a+1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br><br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>    while(a&lt;=100)<br>    {<br>         printf("%d   ",a);<br>         a=a+1;<br>    }<br>    a=99;<br>    while(a&gt;=1)<br>    {<br>         printf("%d   ",a);<br>         a=a-1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:33:03 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309264</guid>
      </item>
      <item>
         <title>1606林铎峰</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309266</link>
         <description><![CDATA[<div>1：<br>int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>2：<br>int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a-1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>3：<br>int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>4：<br>int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;if(a==10000)<br>&nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;break;<br>&nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>5：<br>int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp;{<br>&nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a=a+2;<br>&nbsp;}<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>6：<br>int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&lt;=200)<br>&nbsp; &nbsp; {<br>&nbsp;printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp;}<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>7：int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d&nbsp; ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; a=99;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d&nbsp; ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a-1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:33:04 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309266</guid>
      </item>
      <item>
         <title>1606张宝英</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309267</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>    a=1;<br>    while(a&lt;=100)<br>    {<br>         printf("%d",a);<br>         a=a+1;<br>    }     <br>	system("pause");<br>	return 0;<br>}<br><br><br>2.<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>    a=100;<br>    while(a&gt;=1)<br>    {<br>       printf("%d\n",a);<br>       a=a-1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br><br><br>3.#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>    while(1)<br>    {<br>         printf("%d\n",a);<br>         a=a+1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br><br><br>4.#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>    while(1)<br>    {<br>         printf("%d\n",a);<br>         a=a+1;<br>         if(a==10000)<br>         {<br>            break;<br>         }<br>    }<br>	system("pause");<br>	return 0;<br>}<br><br><br>5.#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>    while(1)<br>    {<br>         printf("%d\n",a);<br>         if(a==10000)<br>         {<br>            break;<br>         }<br>         a=a+1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:33:05 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309267</guid>
      </item>
      <item>
         <title>1606徐翊桓</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309283</link>
         <description><![CDATA[<div>1. int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while (a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d ",a);<br>&nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>2. int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d ",a);<br>&nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>3. int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&lt;=200)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d ",a);<br>&nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>4. int a;&nbsp;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>5. int a;&nbsp;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d\n",a);<br><br>&nbsp; &nbsp; if(a==10000)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;break;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>6. int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d ",a);<br>&nbsp; &nbsp; a=a+2;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>7. int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d &nbsp; ",a);<br>&nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; a=99;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d &nbsp; ",a);<br>&nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:33:14 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309283</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309390</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:33:59 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309390</guid>
      </item>
      <item>
         <title>1606程露瑶</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309432</link>
         <description><![CDATA[<div>int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br><br>int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a-1;&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br><br>int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;&nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br><br>int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;if(a==10000)<br>&nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;break; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1; &nbsp;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br><br>int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+2;&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br><br>int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&lt;=200)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br><br>int a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d&nbsp; ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; a=99;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d&nbsp; ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a-1;&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:34:14 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309432</guid>
      </item>
      <item>
         <title>何永康</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309437</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/241091017/ee6235542f1f0974c51905dd0bf9a79c/11____.c" />
         <pubDate>2017-11-22 01:34:16 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309437</guid>
      </item>
      <item>
         <title>吴克龙</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309465</link>
         <description><![CDATA[<div>1<br> int a;<br>    a=1;<br>    while(a&lt;=100)<br>    {<br> printf("% d",a);<br>        a=a+1;<br>    }<br>2.<br> int a;<br>    a=100;<br>    while(a&gt;=1)<br>    {<br> printf("% d",a);<br>        a=a-1;<br>    }<br><br>3.<br> int a=1;<br>    while(1)<br>    {<br> printf("%d\n",a);<br>        a=a+1;<br>    }<br>4<br> int a=1;<br>    while(1)<br>    {<br> printf("%d\n",a);<br>        if(a==10000)<br> {<br> break;<br>        }<br>        a=a+1;<br>    }<br>5。<br> int a;<br>    a=2;<br>    while(a&lt;=100)<br>    {<br> printf(" %d",a);<br>        a=a+2;<br>    }<br>6。<br> int a=100;<br>    while(a&lt;=200)<br>    {<br> printf("%d",a);<br>        a=a+1;<br>    }<br>7。	int a=1;<br>	while(a&lt;=100)<br>    {<br>		printf("%d ",a);<br>        a=a+1;<br>    }<br>    a=99;<br>    while(a&gt;=1)<br>    {<br>		printf("%d ",a);<br>        a=a-1;<br>    }<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:34:23 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309465</guid>
      </item>
      <item>
         <title>1606何俊彦</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309477</link>
         <description><![CDATA[<div>1.<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }&nbsp; &nbsp;<br>	system("pause");<br>	return 0;<br>}<br><br>2.<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a-1;<br>&nbsp; &nbsp; } &nbsp;<br>	system("pause");<br>	return 0;<br>}<br><br>3.<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }&nbsp; &nbsp;<br>	system("pause");<br>	return 0;<br>}<br><br>4.<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;if(a==10000)<br>&nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br><br>5.<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+2;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br><br>6.<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=100;<br>&nbsp; &nbsp; while(a&lt;=200)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br><br>7.<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; a=99;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:34:27 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309477</guid>
      </item>
      <item>
         <title>1606赵欢1.int main(){	int a;    a=100;    while(a&gt;1)    {       printf(&quot;%d&quot;,a);       a=a-1;    }	system(&quot;pause&quot;);	return 0;}</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309505</link>
         <description><![CDATA[<div>2.int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br>3.int main()<br>{<br>	int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br>4.int main()<br>{<br>	int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;if(a==10000)<br>&nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;break;<br>&nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; } &nbsp;<br>	system("pause");<br>	return 0;<br>}<br>5.int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+2;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br>6.int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&lt;200)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br>7.int main()<br>{<br>	int a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d &nbsp; ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; a=99;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d &nbsp; ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=-1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:34:37 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309505</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309528</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet.com/7241963/9mgv4n942jbt" />
         <pubDate>2017-11-22 01:34:49 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309528</guid>
      </item>
      <item>
         <title>谢丰宇</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309554</link>
         <description><![CDATA[<div><strong>int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }<br>&nbsp;int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>		int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;if(a==10000)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("% d",a);<br>&nbsp; &nbsp; a=a+2;<br>&nbsp; &nbsp; }<br>	int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&lt;=200)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>	int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d&nbsp; ",a);<br>&nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; a=99;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d&nbsp; ",a);<br>&nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }</strong></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:34:58 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309554</guid>
      </item>
      <item>
         <title>1606刘露路</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309563</link>
         <description><![CDATA[<div>第1次<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>&nbsp;int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d",a);<br>&nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}<br><br>2.<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>&nbsp;int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a-1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}<br><br><br><br>3.#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>&nbsp;int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}<br><br>4.#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>&nbsp;int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if(a==10000)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}<br><br><br>5。#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>&nbsp;int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp;printf(" %d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+2;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}<br><br><br>6<br>{<br>&nbsp;int a=1;<br>&nbsp;while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp;printf("%d ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; a=99;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp;printf("%d ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }<br><br><br>7<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>&nbsp;int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&lt;=200)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:35:03 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309563</guid>
      </item>
      <item>
         <title>1606郭羿龙</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309595</link>
         <description><![CDATA[<div>1<br>{<br> int a;<br>    a=1;<br>    while(a&lt;=100)<br>    {<br>         printf("%d",a);<br>         a=a+1;<br>    }     <br> system("pause");<br> return 0;<br>}<br>2<br>{<br> int a;<br>    a=100;<br>    while(a&gt;=1)<br>    {<br>       printf("%d\n",a);<br>       a=a-1;<br>    }<br> system("pause");<br> return 0;<br>}<br>3<br>{<br> int a=1;<br>    while(1)<br>    {<br> printf("%d\n",a);<br>        a=a+1;<br>    }<br> system("pause");<br> return 0;<br>}<br>4<br>{<br> int a=1;<br>    while(1)<br>    {<br> printf("%d\n",a);<br>        if(a==10000)<br> {<br> break;<br>        }<br>        a=a+1;<br>    }<br> system("pause");<br> return 0;<br>}<br>5<br>{<br> int a;<br>    a=2;<br>    while(a&lt;=100)<br>    {<br> printf(" %d",a);<br>        a=a+2;<br>    }<br> system("pause");<br> return 0;<br>}<br>6<br>{<br> int a=1;<br> while(a&lt;=100)<br>    {<br> printf("%d ",a);<br>        a=a+1;<br>    }<br>    a=99;<br>    while(a&gt;=1)<br>    {<br> printf("%d ",a);<br>        a=a-1;<br>    }<br>7<br>{<br>         printf("%d   ",a);<br>         a=a+1;<br>    }<br>    a=99;<br>    while(a&gt;=1)<br>    {<br>         printf("%d  ",a);<br>         a=a-1;<br>    }<br>          <br>	system("pause");<br>	return 0;<br>}<br><br><br></div>]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/241090768/c13f003210e204cdb916c25b2e075b9d/0030.jpg" />
         <pubDate>2017-11-22 01:35:20 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309595</guid>
      </item>
      <item>
         <title>1606王楚豫</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309661</link>
         <description><![CDATA[<div>1<br>&nbsp;int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp;printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>2.<br>&nbsp;int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp;printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }<br><br>3.<br>&nbsp;int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>4<br>&nbsp;int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; if(a==10000)<br>&nbsp;{<br>&nbsp;break;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>5。<br>&nbsp;int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp;printf(" %d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+2;<br>&nbsp; &nbsp; }<br>6。<br>&nbsp;int a=100;<br>&nbsp; &nbsp; while(a&lt;=200)<br>&nbsp; &nbsp; {<br>&nbsp;printf("%d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>7。	int a=1;<br>	while(a&lt;=100)<br>&nbsp; &nbsp; {<br>		printf("%d ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; a=99;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>		printf("%d ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }</div>]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/241090856/8f6fd92b5707f1c9ca640753177233ea/578080_screenshots_20171101195456_1.jpg" />
         <pubDate>2017-11-22 01:35:54 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309661</guid>
      </item>
      <item>
         <title>1606吴明</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309837</link>
         <description><![CDATA[<div>（1）int a;<br>    a=1;<br>    while(a&lt;=100)<br>    {<br> printf("% d",a);<br>        a=a+1;<br>    }<br>（2）int a;<br>    a=100;<br>    while(a&gt;=1)<br>    {<br> printf("% d",a);<br>        a=a-1;<br>    }<br>（3）int a=1;<br>    while(1)<br>    {<br> printf("%d\n",a);<br>        a=a+1;<br>    }<br>（4）int a=1;<br>    while(1)<br>    {<br> printf("%d\n",a);<br> if(a==10000)<br>        {<br> break;<br>        }<br>    a=a+1;<br>    }<br>（5）int a;<br>    a=2;<br>    while(a&lt;=100)<br>    {<br> printf("% d",a);<br>        a=a+2;<br>    }<br>（6）int a;<br>    a=100;<br>    while(a&lt;=200)<br>    {<br> printf("% d",a);<br>        a=a+1;<br>    }<br>（7）int a=1;<br>    while(a&lt;=100)<br>		{<br>			printf("%d ",a);<br>			a=a+1;<br>		}<br>    a=99;<br>    while(a&gt;=1)<br>		{<br>			printf("%d ",a);<br>			a=a-1;<br>		}</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:37:24 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309837</guid>
      </item>
      <item>
         <title>1606严皓玮</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209309995</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/241090766/6283051b144efcf3a572f9470908654d/7.c" />
         <pubDate>2017-11-22 01:38:35 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209309995</guid>
      </item>
      <item>
         <title>1606张宝英</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310011</link>
         <description><![CDATA[<div>6.<br>int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&lt;=200)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br><br><br>7.<br>	int a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("%d &nbsp; ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; a=99;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("%d&nbsp; ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;a=a-1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br>	system("pause");<br>	return 0;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:38:43 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310011</guid>
      </item>
      <item>
         <title>1606刘伟健</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310016</link>
         <description><![CDATA[<div>int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1);<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; &nbsp; &nbsp;if(a==10000)<br>&nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+2;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;retuturn 0;</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:38:45 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310016</guid>
      </item>
      <item>
         <title>1606刘诗阳</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310057</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>    a=1;<br>    while(a&lt;=100)<br>    {<br>       printf("%d ",a);<br>       a=a+1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>    a=100;<br>    while(a&gt;=1)<br>    {<br>       printf("%d ",a);<br>       a=a-1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>    a=100;<br>    while(a&gt;=1)<br>    {<br>       printf("%d ",a);<br>       a=a-1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>    while(1)<br>    {<br>        printf("%d\n",a);<br>        if(a==10000)<br>        {<br>            break;<br>        }<br>        a=a+1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>    a=2;<br>    while(a&lt;=100)<br>    {<br>       printf("%d ",a);<br>       a=a+2;<br>    }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>    a=100;<br>    while(a&lt;=300)<br>    {<br>          printf("%d ",a);<br>          a=a+1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>    while(a&lt;=100)<br>    {<br>        printf("%d  ",a);<br>        a=a+1;<br>    }<br>    a=99;<br>    while(a&gt;=1)<br>    {<br>        printf("%d  ",a);<br>        a=a-1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:39:01 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310057</guid>
      </item>
      <item>
         <title>1606文黎</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310072</link>
         <description><![CDATA[<div>1：int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>2：int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a-1;<br>&nbsp; &nbsp; }<br>3：int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>4： int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; if(a==10000)<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>5： int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+2;<br>&nbsp; &nbsp; }<br>6：int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&lt;=300)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("%d ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>7：int a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d&nbsp; ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; a=99;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d&nbsp; ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:39:06 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310072</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310375</link>
         <description><![CDATA[<div>1606双克辉<br><br></div>]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/241091633/032ab189f9d8064ff575fcbae88626e5/1.c" />
         <pubDate>2017-11-22 01:40:35 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310375</guid>
      </item>
      <item>
         <title>1606唐玲玲</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310707</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>    a=1;<br>    while(a&lt;=100)<br>    {<br>       printf("%d ",a);<br>       a=a+1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>    a=100;<br>    while(a&gt;=1)<br>    {<br>       printf("%d ",a);<br>       a=a-1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>    a=100;<br>    while(a&gt;=1)<br>    {<br>       printf("%d ",a);<br>       a=a-1;<br>    }<br>	system("pause");<br>	return 0;<br>}#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>    while(1)<br>    {<br>        printf("%d\n",a);<br>        if(a==10000)<br>        {<br>            break;<br>        }<br>        a=a+1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>    a=2;<br>    while(a&lt;=100)<br>    {<br>       printf("%d ",a);<br>       a=a+2;<br>    }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>    a=100;<br>    while(a&lt;=300)<br>    {<br>          printf("%d ",a);<br>          a=a+1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>    while(a&lt;=100)<br>    {<br>        printf("%d  ",a);<br>        a=a+1;<br>    }<br>    a=99;<br>    while(a&gt;=1)<br>    {<br>        printf("%d  ",a);<br>        a=a-1;<br>    }<br>	system("pause");<br>	return 0;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:42:41 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310707</guid>
      </item>
      <item>
         <title>rcy</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310728</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d",a);<br>&nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d",a);<br>&nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; if(a==10000)<br>&nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;break;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d",a);<br>&nbsp; &nbsp; a=a+2;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("%d &nbsp; ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp;a=99;<br>&nbsp; &nbsp;while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d &nbsp; ",a);<br>&nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&lt;=200)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; system("pause");<br>	return 0;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:42:55 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310728</guid>
      </item>
      <item>
         <title>1606徐哲灏</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310791</link>
         <description><![CDATA[<div>1<br>&nbsp;int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp;printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>2.<br>&nbsp;int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp;printf("% d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }<br><br>3.<br>&nbsp;int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>4<br>&nbsp;int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; if(a==10000)<br>&nbsp;{<br>&nbsp;break;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>5。<br>&nbsp;int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp;printf(" %d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+2;<br>&nbsp; &nbsp; }<br>6。<br>&nbsp;int a=100;<br>&nbsp; &nbsp; while(a&lt;=200)<br>&nbsp; &nbsp; {<br>&nbsp;printf("%d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>7。	int a=1;<br>	while(a&lt;=100)<br>&nbsp; &nbsp; {<br>		printf("%d ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; a=99;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>		printf("%d ",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:43:24 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310791</guid>
      </item>
      <item>
         <title>。</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310796</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:43:26 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310796</guid>
      </item>
      <item>
         <title>哈哈哈我叫水克火 </title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310847</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:43:58 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310847</guid>
      </item>
      <item>
         <title>1606王帅</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310902</link>
         <description><![CDATA[<div>第一次<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>&nbsp;int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d",a);<br>&nbsp; &nbsp; a=a+1; <br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}<br>第二次<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>&nbsp;int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d",a);<br>&nbsp; &nbsp; a=a-1;&nbsp; &nbsp; <br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}<br>第三次<br><strong>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>&nbsp;int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+2; <br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}<br></strong>第四次<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>&nbsp;int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;if(a==10001)&nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; break;&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}<br>第五次<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>&nbsp;int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; a=a+1;&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>}<br>第六次<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=99)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d ",a);<br>&nbsp; &nbsp; a=a+1;&nbsp;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; printf("%d ",a);<br>&nbsp; &nbsp; a=a-1;&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br><br>第七次<br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&lt;=200)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; printf("%d",a);<br>&nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:44:30 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310902</guid>
      </item>
      <item>
         <title>代强</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310904</link>
         <description><![CDATA[<div>int a,b;<br>    a=1;<br>    b=100;<br>    while(a&lt;=100)<br>    {<br>    printf("%d ",a);<br>    a=a+1;<br>    }<br>    printf("\n\n");<br>    while(b&gt;=1)<br>    {<br>    printf("%d ",b);<br>    b=b-1;<br>    }<br>int a=1;<br>    while(1)<br>    {<br>    printf("%d\n",a);<br>    a=a+1;<br>    }<br>int a;<br>    a=1;<br>    while(1)<br>    {<br>		printf("%d \n",a);<br>		if(a==10000)<br>		break;<br>		a=a+1;<br>    }<br>int a=2;<br>    while(a&lt;=100)<br>    {<br>		printf("%d ",a);<br>        a=a+2;<br>    }<br>int a;<br>    a=100;<br>    while(a&lt;=200)<br>    {<br>		printf("%d ",a);<br>        a=a+1;<br>    }<br>int a=1;<br>    while(a&lt;=100)<br>    {<br>		printf("%d ",a);<br>		a=a+1;<br>    }<br>    a=99;<br>    while(a&gt;=1)<br>    {<br>		printf("%d ",a);<br>        a=a-1;<br>    }<br><br></div>]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/241092245/e8c5e10a98e43a1bd880bb1bc8d6450a/32b139e53e5672da253da7ab3515369e.jpeg" />
         <pubDate>2017-11-22 01:44:30 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310904</guid>
      </item>
      <item>
         <title>杨顺义</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310921</link>
         <description><![CDATA[<div>1 int a;<br>&nbsp; &nbsp; scanf("%d",&amp;a);<br>&nbsp; &nbsp; while (a&lt;=100)<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp;<br>2 int a;<br>&nbsp; &nbsp; scanf("%d",&amp;a);<br>&nbsp; &nbsp; while(a&gt;0)<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp;system("pause");<br>3 int a;<br>&nbsp; &nbsp; scanf("%d",&amp;a);<br>&nbsp; &nbsp; while(a&gt;0)<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp;system("pause");<br>4 int a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; if(a==10000)<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp;&nbsp;<br>&nbsp;system("pause");<br>5 int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while (a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp;a=a+2;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>6 int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&lt;200)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>&nbsp;system("pause");<br>&nbsp;return 0;<br>&nbsp;system("pause");<br>7 </div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:44:44 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310921</guid>
      </item>
      <item>
         <title>黄祈然</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310940</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:44:49 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310940</guid>
      </item>
      <item>
         <title>黄祈然</title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209310985</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>&nbsp; &nbsp; int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br><br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {		<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br><br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	<br>	int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br><br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if(a==10001)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br>&nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br><br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=2;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%d",a);<br>&nbsp; &nbsp; &nbsp; &nbsp;a=a+2;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br><br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&lt;=200)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	return 0;<br>}<br><br>#include &lt;stdio.h&gt;<br>#include &lt;stdlib.h&gt;<br>int main()<br>{<br>	int a;<br>&nbsp; &nbsp; a=100;<br>&nbsp; &nbsp; while(a&gt;=1)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a-1;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; a=1;<br>&nbsp; &nbsp; while(a&lt;=100)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d\n",a);<br>&nbsp; &nbsp; &nbsp; &nbsp; a=a+1;<br>&nbsp; &nbsp; }<br>	system("pause");<br>	system("pause");<br>	return 0;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-11-22 01:45:22 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209310985</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/7241963/9mgv4n942jbt/wish/209311157</link>
         <description><![CDATA[int a,b;
    scanf("d",&a);
    while (a<=100)
    {
     printf("%d\n",a);
     a=a+1;
     if (a==101)
        {break;
        }
    }
    scanf("%d",&b); 
    while (b>0)
    {
     printf("%d\n",b);
     b=b-1;
     if (b==0)
        {break;
        }       
    }     ]]></description>
         <pubDate>2017-11-22 01:46:52 UTC</pubDate>
         <guid>https://padlet.com/7241963/9mgv4n942jbt/wish/209311157</guid>
      </item>
   </channel>
</rss>
