<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/washingto" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/washingto" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 04 Jun 2009 16:21:00 GMT</lastBuildDate><title>紫晶花园-计算机技术分园</title><description>紫晶花园</description><link>http://blog.csdn.net/washingto/</link><item><title>C、C++、C#简单代码编译结果的不同!</title><link>http://blog.csdn.net/washingto/archive/2009/06/04/4242539.aspx</link><wfw:comment>http://blog.csdn.net/washingto/comments/4242539.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/washingto/comments/commentRss/4242539.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4242539</trackback:ping><description>&lt;br /&gt;下面的代码第一眼看上去结果应该是1,2,3，&lt;br /&gt;
int i=1;&lt;br /&gt;
printf(&quot;%d,%d,%d&quot;,i++,i++,i++)&lt;br /&gt;
可实际上不是这样的。&lt;br /&gt;
C语言的结果是：3,2,1&lt;br /&gt;
C++的结果是：1,1,1&lt;br /&gt;
C#的结果是：1,2,3&lt;br /&gt;
为什么呢？难道就是编译器的问题所在？&lt;br /&gt;
希望这样的问题不要出现在试题里，要不说明情况，真是难做啊0_0&lt;img src =&quot;http://blog.csdn.net/washingto/aggbug/4242539.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236662879/washingto/csdn.net/s.gif?r=http://blog.csdn.net/washingto/archive/2009/06/04/4242539.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/washingto/236662879/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/washingto/236662879/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 05 Jun 2009 00:21:00 +0800</pubDate><author>水晶圣教士</author><comments>http://blog.csdn.net/washingto/archive/2009/06/04/4242539.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/washingto/archive/2009/06/04/4242539.aspx</guid><dc:creator>水晶圣教士</dc:creator><fs:srclink>http://blog.csdn.net/washingto/archive/2009/06/04/4242539.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/washingto/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/washingto/~1149903/236662879/1149890</fs:itemid></item><item><title>简介vc中的release和debug版本的区别</title><link>http://blog.csdn.net/washingto/archive/2009/06/04/4242166.aspx</link><wfw:comment>http://blog.csdn.net/washingto/comments/4242166.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/washingto/comments/commentRss/4242166.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4242166</trackback:ping><description>&lt;br /&gt;简介vc中的release和debug版本的区别&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
Debug通常称为调试版本，它包含调试信息，并且不作任何优化，便于程序员调试程序。Release称为发布版本，它往往是进行了各种优化，使得程序在代码大小和运行速度上都是最优的，以便用户很好地使用。&lt;br /&gt;&lt;br /&gt;
Debug 和 Release 的真正秘密，在于一组编译选项。下面列出了分别针对二者的选项（当然除此之外还有其他一些，如/Fd /Fo，但区别并不重要，通常他们也不会引起 Release 版错误，在此不讨论）&lt;br /&gt;&lt;br /&gt;
Debug 版本&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
参数 含义&lt;br /&gt;
/MDd /MLd 或 /MTd 使用 Debug runtime library (调试版本的运行时刻函数库)&lt;br /&gt;
/Od 关闭优化开关&lt;br /&gt;
/D &quot;_DEBUG&quot; 相当于 #define _DEBUG,打开编译调试代码开关 (主要针对assert函数)&lt;br /&gt;
/ZI 创建 Edit and continue(编辑继续)数据库&lt;img src =&quot;http://blog.csdn.net/washingto/aggbug/4242166.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236662888/washingto/csdn.net/s.gif?r=http://blog.csdn.net/washingto/archive/2009/06/04/4242166.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/washingto/236662888/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/washingto/236662888/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 04 Jun 2009 22:41:00 +0800</pubDate><author>水晶圣教士</author><comments>http://blog.csdn.net/washingto/archive/2009/06/04/4242166.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/washingto/archive/2009/06/04/4242166.aspx</guid><dc:creator>水晶圣教士</dc:creator><fs:srclink>http://blog.csdn.net/washingto/archive/2009/06/04/4242166.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/washingto/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/washingto/~1149903/236662888/1149890</fs:itemid></item><item><title>TD-SCDMA</title><link>http://blog.csdn.net/washingto/archive/2009/05/07/4156682.aspx</link><wfw:comment>http://blog.csdn.net/washingto/comments/4156682.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/washingto/comments/commentRss/4156682.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4156682</trackback:ping><description>TD-SCDMA
时分-同步码分多址存取（英文：Time Division - Synchronous Code Division Multiple Access，缩写为：TD-SCDMA），是ITU批准的三个3G标准中的一个，相对于另两个主要3G标准（CDMA2000）或（WCDMA）它的起步较晚。&lt;img src =&quot;http://blog.csdn.net/washingto/aggbug/4156682.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/washingto/236662893/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/washingto/236662893/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 07 May 2009 17:53:00 +0800</pubDate><author>水晶圣教士</author><comments>http://blog.csdn.net/washingto/archive/2009/05/07/4156682.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/washingto/archive/2009/05/07/4156682.aspx</guid><dc:creator>水晶圣教士</dc:creator><fs:srclink>http://blog.csdn.net/washingto/archive/2009/05/07/4156682.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/washingto/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/washingto/~1149903/236662893/1149890</fs:itemid></item><item><title>WCDMA</title><link>http://blog.csdn.net/washingto/archive/2009/05/07/4156665.aspx</link><wfw:comment>http://blog.csdn.net/washingto/comments/4156665.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/washingto/comments/commentRss/4156665.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4156665</trackback:ping><description>&lt;br /&gt;WCDMA&lt;br /&gt;&lt;br /&gt;WCDMA（Wide band Code Division Multiple Access 宽带码分多址）是一种3G蜂窝网络。WCDMA使用的部分协议与2G GSM 标准一致。&lt;br /&gt;&lt;br /&gt;具体一点来说，WCDMA是一种利用码分多址复用（或者CDMA 通用 复用技术，不是指CDMA标准）方法的宽带扩频3G移动通信空中接口。&lt;br /&gt;目录&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    * 1 历史概要&lt;br /&gt;    * 2 误解&lt;br /&gt;    * 3 当前状况&lt;br /&gt;    * 4 产品认证&lt;br /&gt;    * 5 技术&lt;br /&gt;    * 6 与其他标准比较&lt;br /&gt;&lt;br /&gt;1.历史概要&lt;br /&gt;&lt;br /&gt;历史上，欧洲电信标准委员会（ETSI）在 GSM 之后就开始研究其 3G 标准，其中有几种备选方案是基于直接序列扩频分码多工的，而日本的第三代研究也是使用宽带码分多址技术的，其后，以二者为主导进行融合，在3GPP组织中发展成了第三代移动通信系统UMTS，并提交给国际电信联盟（ITU）。&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/washingto/aggbug/4156665.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/washingto/236662896/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/washingto/236662896/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 07 May 2009 17:48:00 +0800</pubDate><author>水晶圣教士</author><comments>http://blog.csdn.net/washingto/archive/2009/05/07/4156665.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/washingto/archive/2009/05/07/4156665.aspx</guid><dc:creator>水晶圣教士</dc:creator><fs:srclink>http://blog.csdn.net/washingto/archive/2009/05/07/4156665.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/washingto/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/washingto/~1149903/236662896/1149890</fs:itemid></item><item><title>CDMA2000</title><link>http://blog.csdn.net/washingto/archive/2009/05/06/4155115.aspx</link><wfw:comment>http://blog.csdn.net/washingto/comments/4155115.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/washingto/comments/commentRss/4155115.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4155115</trackback:ping><description>&lt;br /&gt;CDMA2000&lt;br /&gt;&lt;br /&gt;CDMA2000 是一个3G移动通讯标准，国际电信联盟ITU的IMT-2000标准认可的无线电接口，也是2G cdmaOne标准的延伸。 根本的信令标准是IS-2000。 CDMA2000与另一个3G标准WCDMA不兼容。&lt;br /&gt;&lt;br /&gt;由3G CDMA2000标准延伸的4G标准为超行动宽带（UMB）。&lt;br /&gt;&lt;br /&gt;CDMA2000是美国通讯行业协会 (TIA-USA) 的注册商标，并不是一个象CDMA一样的通用术语。TIA也注册了他们的2G cdmaOne标准（AKA IS-95）对应CDMA1X。&lt;br /&gt;&lt;br /&gt;CDMA2000有多个不同的类型。下面按照复杂度排列：&lt;br /&gt;目录&lt;br /&gt;&lt;br /&gt;    * 1 CDMA2000 1x&lt;br /&gt;    * 2 CDMA2000 1xRTT&lt;br /&gt;    * 3 CDMA2000 1xEV&lt;br /&gt;          o 3.1 当前部署情况&lt;br /&gt;    * 4 CDMA2000 3x&lt;br /&gt;    * 5 各地营运者&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/washingto/aggbug/4155115.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/washingto/236662901/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/washingto/236662901/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 07 May 2009 00:31:00 +0800</pubDate><author>水晶圣教士</author><comments>http://blog.csdn.net/washingto/archive/2009/05/06/4155115.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/washingto/archive/2009/05/06/4155115.aspx</guid><dc:creator>水晶圣教士</dc:creator><fs:srclink>http://blog.csdn.net/washingto/archive/2009/05/06/4155115.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/washingto/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/washingto/~1149903/236662901/1149890</fs:itemid></item><item><title>CDMA介绍</title><link>http://blog.csdn.net/washingto/archive/2009/04/29/4135551.aspx</link><wfw:comment>http://blog.csdn.net/washingto/comments/4135551.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/washingto/comments/commentRss/4135551.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4135551</trackback:ping><description>&lt;br /&gt;CDMA介绍&lt;br /&gt;&lt;br /&gt;CDMA，英文全写为Code Division Multiple Access，翻译作碼分多址或分碼多工或分碼多重存取，是一种多路复用的无线通信技术。CDMA原本是美国军方为了通信而开发的，但时至今日，已广泛应用到全球不同的民用通信中。在CDMA移动通信中，将话音信号转换为数字信号，给每组数据话音分组增加一个地址，进行扰码处理，并且将它发射到空中。CDMA最大的优点就是相同的带宽下可以容纳更多的呼叫，而且它还可以随话音传送数据信息。&lt;br /&gt;&lt;br /&gt;一般信息&lt;br /&gt;&lt;br /&gt;一般来说（作为复用方法），Code Division Multiple Access（CDMA）是被美国军方通讯采用的某种扩频方案。理论上，数据化的信息使用CDMA技术进行编码和解码，可以大大提高对无线信道的利用率，增强抗干扰能力。Qualcomm（高通）公司解决了CDMA中至关重要的功率控制问题，并取得相关的专利。CDMA制式中，区分各个通道主要不再依靠频率和时隙等方法，因此同一地区不同用户同时使用相同的频率是正常的。除此之外被广泛使用的多路访问技术还有&lt;img src =&quot;http://blog.csdn.net/washingto/aggbug/4135551.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/washingto/236662902/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/washingto/236662902/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 29 Apr 2009 18:26:00 +0800</pubDate><author>水晶圣教士</author><comments>http://blog.csdn.net/washingto/archive/2009/04/29/4135551.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/washingto/archive/2009/04/29/4135551.aspx</guid><dc:creator>水晶圣教士</dc:creator><fs:srclink>http://blog.csdn.net/washingto/archive/2009/04/29/4135551.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/washingto/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/washingto/~1149903/236662902/1149890</fs:itemid></item><item><title>现在的杀毒软件靠软件名杀毒？</title><link>http://blog.csdn.net/washingto/archive/2009/04/20/4094197.aspx</link><wfw:comment>http://blog.csdn.net/washingto/comments/4094197.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/washingto/comments/commentRss/4094197.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4094197</trackback:ping><description>&lt;br /&gt;    我不知道现在的杀毒软件是怎么来识别病毒的，每家杀毒软件厂商在广告上都说自己有什么样的技术，这个技术怎么样的好，可是我却发现有的杀毒软件居然根据文件名来判断病毒，我的天，这样的话还学要杀毒软件吗？&lt;br /&gt;    我曾经写过一篇自己动手防御U盘和移动硬盘的方法（http://blog.csdn.net/washingto/archive/2008/10/25/3142754.aspx），其中学要自己写一个简单的AutoRun.inf的文件，可是我发现有些杀毒软件居然发现这样的文件就当作是病毒，直接就被删了，还把这样的文件当蠕虫病毒，可笑啊。难道杀毒软件就不能先分析一下文件再判断是不是病毒吗？AutoRun.inf文件本来就是文本型的，一般容量也不大，不用这样“宁愿错杀三千，也不放过一个”吧！&lt;br /&gt;    我用过的软件这样蛮横的有：360安全卫士（接上U盘或移动硬盘就被删了）、金山毒霸（以前会，现在不知道了。不过金山清理专家不会）、KV2009（本来很喜欢的一个杀毒软件，居然也有这毛病，痛心啊），其他国外杀毒软件好像也有，我没有一一测试，不过用的时候遇到了，就记&lt;img src =&quot;http://blog.csdn.net/washingto/aggbug/4094197.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/washingto/236662904/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/washingto/236662904/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 20 Apr 2009 21:07:00 +0800</pubDate><author>水晶圣教士</author><comments>http://blog.csdn.net/washingto/archive/2009/04/20/4094197.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/washingto/archive/2009/04/20/4094197.aspx</guid><dc:creator>水晶圣教士</dc:creator><fs:srclink>http://blog.csdn.net/washingto/archive/2009/04/20/4094197.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/washingto/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/washingto/~1149903/236662904/1149890</fs:itemid></item><item><title>C语言程序100例之C#版-010</title><link>http://blog.csdn.net/washingto/archive/2009/03/25/4023051.aspx</link><wfw:comment>http://blog.csdn.net/washingto/comments/4023051.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/washingto/comments/commentRss/4023051.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4023051</trackback:ping><description>C语言程序100例之C#版-010
【程序10】题目：打印楼梯，同时在楼梯上方打印两个笑脸。 
1.程序分析：用i控制行，j来控制列，j根据i的变化来控制输出黑方格的个数。
2.程序源代码：
C语言代码：
#include &quot;stdio.h&quot;
#include &quot;conio.h&quot;main()&lt;img src =&quot;http://blog.csdn.net/washingto/aggbug/4023051.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/washingto/236662906/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/washingto/236662906/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 25 Mar 2009 20:41:00 +0800</pubDate><author>水晶圣教士</author><comments>http://blog.csdn.net/washingto/archive/2009/03/25/4023051.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/washingto/archive/2009/03/25/4023051.aspx</guid><dc:creator>水晶圣教士</dc:creator><fs:srclink>http://blog.csdn.net/washingto/archive/2009/03/25/4023051.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/washingto/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/washingto/~1149903/236662906/1149890</fs:itemid></item><item><title>输出若干字符的4位（或多位）组合</title><link>http://blog.csdn.net/washingto/archive/2009/03/24/4020986.aspx</link><wfw:comment>http://blog.csdn.net/washingto/comments/4020986.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/washingto/comments/commentRss/4020986.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4020986</trackback:ping><description>//输出若干字符的4位（或多位）组合
using System;
class tempCode4
{
    static void Main()
    {
        Array char1=Array.CreateInstance(typeof(string),5);&lt;img src =&quot;http://blog.csdn.net/washingto/aggbug/4020986.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/washingto/236662908/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/washingto/236662908/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 25 Mar 2009 01:42:00 +0800</pubDate><author>水晶圣教士</author><comments>http://blog.csdn.net/washingto/archive/2009/03/24/4020986.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/washingto/archive/2009/03/24/4020986.aspx</guid><dc:creator>水晶圣教士</dc:creator><fs:srclink>http://blog.csdn.net/washingto/archive/2009/03/24/4020986.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/washingto/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/washingto/~1149903/236662908/1149890</fs:itemid></item><item><title>C语言程序100例之C#版-009</title><link>http://blog.csdn.net/washingto/archive/2009/03/23/4017412.aspx</link><wfw:comment>http://blog.csdn.net/washingto/comments/4017412.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/washingto/comments/commentRss/4017412.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4017412</trackback:ping><description>&lt;br /&gt;C语言程序100例之C#版-009&lt;br /&gt;【程序9】&lt;br /&gt;题目：要求输出国际象棋棋盘。&lt;br /&gt;1.程序分析：用i控制行，j来控制列，根据i+j的和的变化来控制输出黑方格，还是白方格。&lt;br /&gt;2.程序源代码：&lt;br /&gt;C语言程序：&lt;br /&gt;#include &quot;stdio.h&quot;&lt;br /&gt;#include &quot;conio.h&quot;&lt;br /&gt;main()&lt;br /&gt;{&lt;br /&gt;  int i,j;&lt;br /&gt;  for(i=0;i&lt;br /&gt;  {&lt;br /&gt;    for(j=0;j&lt;br /&gt;      if((i+j)%2==0)&lt;br /&gt;        printf(&quot;%c%c&quot;,219,219);&lt;br /&gt;      else&lt;br /&gt;        printf(&quot;  &quot;);&lt;br /&gt;    printf(&quot;\n&quot;);&lt;br /&gt;  }&lt;br /&gt;  getch(); &lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;########################&lt;br /&gt;C#语言程序：&lt;br /&gt;using Syste&lt;img src =&quot;http://blog.csdn.net/washingto/aggbug/4017412.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/washingto/236662910/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/washingto/236662910/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 24 Mar 2009 00:07:00 +0800</pubDate><author>水晶圣教士</author><comments>http://blog.csdn.net/washingto/archive/2009/03/23/4017412.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/washingto/archive/2009/03/23/4017412.aspx</guid><dc:creator>水晶圣教士</dc:creator><fs:srclink>http://blog.csdn.net/washingto/archive/2009/03/23/4017412.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/washingto/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/washingto/~1149903/236662910/1149890</fs:itemid></item></channel></rss>