<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title>C/C++技术资料</title>
<link>/html/C_C__/C_C__jishuziliao/index.html</link>
<description>C/C++ / C/C++技术资料</description>
<language>zh-cn</language>
<generator>copy right @ 百家拳软件项目研究室 2007 &lt;a href=&quot;http://www.miibeian.gov.cn/&quot;&gt;辽ICP备07011763&lt;/a&gt;&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;http://js.users.51.la/1150523.js&quot;&gt;&lt;/script&gt;</generator>
<webmaster>admin@100jq.com</webmaster>
<item>
    <title>static变量举例</title>
    <link>/html/C_C__/C_C__jishuziliao/20080313/2043.html</link>
    <description>#include stdio.h #include stdlib.h int f(int a){ int b=0; static int c=0; b++; c++; return (a+b+c); } int main(int argc, char *argv[]) { int i; for (i=0;i3;i++){ printf(%5d,f(2)); } system(PAUSE); return 0; } 结果输出 4 5 6 如果把int b前加上 static</description>
    <pubDate>2008-03-13</pubDate>
    <category>C/C++技术资料</category>
    <author>魔人</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>二维数组打印菱形 C语言</title>
    <link>/html/C_C__/C_C__jishuziliao/20080313/2042.html</link>
    <description>#include stdio.h #include stdlib.h int main(int argc, char *argv[]) { char diamond[ ][5]={{' ',' ','*'},{' ','*',' ','*'},{'*',' ',' ',' ','*'},{' ','*',' ','*'}, {' ',' ','*'}}; int i,j,k; //二维数组遍历 for(i=0;i5;i++) { for(j=0;j5;j++) printf(%5c</description>
    <pubDate>2008-03-13</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>求最大数函数</title>
    <link>/html/C_C__/C_C__jishuziliao/20080313/2041.html</link>
    <description>求最大数函数 #include stdio.h #include stdlib.h int maxi(int x,int y) // int x,y; { int z; z=xy?x:y; return z; } int main(int argc, char *argv[]) { float a,b,c; scanf(%d %d, a,b); c=maxi(a,b); printf(最大数为 %d,c); system(PAUSE); return 0; }</description>
    <pubDate>2008-03-13</pubDate>
    <category>C/C++技术资料</category>
    <author>魔人</author>
    <comments>原创</comments>
</item>
<item>
    <title>斐波那挈数列 C语言实现</title>
    <link>/html/C_C__/C_C__jishuziliao/20080311/2040.html</link>
    <description>用DEV C++实现 #include stdio.h #include stdlib.h int main(int argc, char *argv[]) { long f1,f2; int i; f1=1;f2=1; for(i=1;i=40;i++) {printf(%12ld %12ld,f1,f2); if(i%2==0)printf(n); //循环两次，输出一个换行 f1=f1+f2; f2=f2+f1; } system(PAUSE); retur</description>
    <pubDate>2008-03-11</pubDate>
    <category>C/C++技术资料</category>
    <author>魔人</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>C语言实现 恺撒加密法</title>
    <link>/html/C_C__/C_C__jishuziliao/20080311/2039.html</link>
    <description>#include stdio.h #include stdlib.h int main(int argc, char *argv[]) { char c; while( (c=getchar() )!='n') { if((c='a'c='z')||(c='A'c='Z')) { c=c+4; if(c'Z'c='Z'+4||c'z'){ c=c-26; } } printf(%c,c); } system(PAUSE); return 0; }</description>
    <pubDate>2008-03-11</pubDate>
    <category>C/C++技术资料</category>
    <author>魔人</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>输入一行字符 统计字符 C语言</title>
    <link>/html/C_C__/C_C__jishuziliao/20080311/2038.html</link>
    <description>输入一行字符，分别统计出其中英文字母、空格，数字和其它字符的个数。 #include stdio.h #include stdlib.h int main(int argc, char *argv[]) { int i,j,k,l; char c; i=0;j=0;k=0;l=0; while((c=getchar())!='n') //输入回车则跳出循环 { if( (c='a'c='z')||(c='A'</description>
    <pubDate>2008-03-11</pubDate>
    <category>C/C++技术资料</category>
    <author>魔人</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>函数的可变参数详谈</title>
    <link>/html/C_C__/C_C__jishuziliao/20080307/2037.html</link>
    <description>*/ -------------------------------------------------------------------------------------- */ 出自： 编程中国 http://www.bc-cn.net */ 作者： neverTheSameE-mail：zhaoxufeng9997@126.comQQ：475818502 */ 时间： 2007-10-5编程论坛首发 */ 声明： 尊重作者劳</description>
    <pubDate>2008-03-07</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>浅谈递归机制和非递归转换</title>
    <link>/html/C_C__/C_C__jishuziliao/20080307/2036.html</link>
    <description>*/ -------------------------------------------------------------------------------------- */ 出自： 编程中国 http://www.bc-cn.net */ 作者： nuciewthE-mail：wth870628@163.comQQ：314218584 */ 时间： 2007-10-7编程论坛首发 */ 声明： 尊重作者劳动，转载请</description>
    <pubDate>2008-03-07</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>M个人,1到N报数出列问题</title>
    <link>/html/C_C__/C_C__jishuziliao/20080307/2035.html</link>
    <description>*/ -------------------------------------------------------------------------------------- */ 出自： 编程中国 http://www.bc-cn.net */ 作者： josen0205QQ：7007873 */ 时间： 2007-10-23编程论坛首发 */ 声明： 尊重作者劳动，转载请保留本段文字 */ ---------</description>
    <pubDate>2008-03-07</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>用地址替代变量的讨论</title>
    <link>/html/C_C__/C_C__jishuziliao/20080307/2034.html</link>
    <description>*/ -------------------------------------------------------------------------------------- */ 出自： 编程中国 http://www.bc-cn.net */ 作者： neverTheSameE-mail：zhaoxufeng9997@126.comQQ：475818502 */ 时间： 2007-10-24编程论坛首发 */ 声明： 尊重作者劳</description>
    <pubDate>2008-03-07</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>宏比函数实现在时间上的优越性探讨</title>
    <link>/html/C_C__/C_C__jishuziliao/20080307/2033.html</link>
    <description>*/ -------------------------------------------------------------------------------------- */ 出自： 编程中国 http://www.bc-cn.net */ 作者： neverTheSameE-mail：zhaoxufeng9997@126.comQQ：475818502 */ 时间： 2007-11-1编程论坛首发 */ 声明： 尊重作者劳</description>
    <pubDate>2008-03-07</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>爱因斯坦难题的Ｃ语言程序设计</title>
    <link>/html/C_C__/C_C__jishuziliao/20080307/2032.html</link>
    <description>*/ -------------------------------------------------------------------------------------- */ 出自： 编程中国 http://www.bc-cn.net */ 作者： yu_hua */ 时间： 2007-11-10编程论坛首发 */ 声明： 尊重作者劳动，转载请保留本段文字 */ -----------------------</description>
    <pubDate>2008-03-07</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>对const使用的理解</title>
    <link>/html/C_C__/C_C__jishuziliao/20080307/2031.html</link>
    <description>*/ -------------------------------------------------------------------------------------- */ 出自： 编程中国 http://www.bc-cn.net */ 作者： neverTheSameE-mail：zhaoxufeng9997@126.comQQ：475818502 */ 时间： 2007-11-16编程论坛首发 */ 声明： 尊重作者劳</description>
    <pubDate>2008-03-07</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>VC下通过直方图变换对图像进行有效增强</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1902.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      青岛郎锐
      &lt;/span</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>在VC中实现画任意方向椭圆</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1901.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      汪自军
      &lt;/span&gt;&lt;</author>
    <comments>
      vchelp
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC++ 6.0中使用复选框和单选钮</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1899.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      韩耀旭
      &lt;/span&gt;&lt;</author>
    <comments>
      vckbase
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>Visual C++实现WinXP关机特效</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1900.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      
      &lt;/span&gt;&lt;span&gt;</author>
    <comments>
      vckbase
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC中预处理指令与宏定义的妙用之二</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1898.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      
      &lt;/span&gt;&lt;span&gt;</author>
    <comments>
      blog
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>用Visual C++干干净净地清除进程</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1897.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      刘涛
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC中预处理指令与宏定义的妙用之一</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1896.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      刘巍
      &lt;/span&gt;&lt;sp</author>
    <comments>
      BLOG
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>Visual C++中实现双缓冲的基本原理</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1895.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      xjtuse_mal
      &lt;/sp</author>
    <comments>
      BLOG
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>用Visual C++编写完整的屏幕保护程序</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1894.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      
      &lt;/span&gt;&lt;span&gt;</author>
    <comments>
      blog
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>基于VC++中ATL创建ActiveX控件的探讨</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1892.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      任凤华 李兰
      &lt;/s</author>
    <comments>
      计算机遇信息技术
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC++ 6.0中实现三叉切分窗口与多视图现</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1893.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      
      &lt;/span&gt;&lt;span&gt;</author>
    <comments>
      blog
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>用Visual C++设计屏幕抓图程序</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1891.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      刘涛
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC++实现显示透明的256色以上的图标</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1890.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      刘涛
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>GIS三维地景仿真设计之最后的话</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1883.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      青岛郎锐
      &lt;/span</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>GIS三维地景仿真设计之雾化和纹理</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1882.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      青岛郎锐
      &lt;/span</author>
    <comments>
      天极网
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC实现自动监测光驱状态的改变</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1881.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      
      &lt;/span&gt;&lt;span&gt;</author>
    <comments>
      blog
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>GIS三维地景仿真设计之地景的数学处理</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1880.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      青岛郎锐
      &lt;/span</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC中对鼠标的确定及简单控制</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1879.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      CNSCOM
      &lt;/span&gt;&lt;</author>
    <comments>
      BLOG
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>GIS三维地景仿真设计之建模及场景渲染</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1878.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      青岛郎锐
      &lt;/span</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>用Visual C++实现QQ界面的模拟</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1877.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      小帅
      &lt;/span&gt;&lt;sp</author>
    <comments>
      vckabse
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>最常见的20种VC++编译错误信息</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1875.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      
      &lt;/span&gt;&lt;span&gt;</author>
    <comments>
      blog
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC++中利用MSXML解析XML文档</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1876.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      
      &lt;/span&gt;&lt;span&gt;</author>
    <comments>
      BLOG
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>GIS三维地景仿真设计之数字高程模型</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1874.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      青岛郎锐
      &lt;/span</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>在VC++中实现无标题栏对话框的拖动</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1873.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      刘涛
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC++大数据量绘图时无闪烁刷屏技术实现</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1872.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      青岛郎锐
      &lt;/span</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>Visual C++2003中DLL初学者指南</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1871.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      小刀人
      &lt;/span&gt;&lt;</author>
    <comments>
      vckbase
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>MFC中数组类的使用分析</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1870.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      韩耀旭
      &lt;/span&gt;&lt;</author>
    <comments>
      vckbase
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC中自动改变控件位置和大小的对话框类</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1869.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      StarLee
      &lt;/span&gt;</author>
    <comments>
      blog
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC中用简易方法实现淡入淡出的启动画面</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1868.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      
      &lt;/span&gt;&lt;span&gt;</author>
    <comments>
      VCKBASE
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>从MFC与ATL的男女关系说起</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1867.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      
      &lt;/span&gt;&lt;span&gt;</author>
    <comments>
      BLOG
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>在VC中添加响应自定义的消息的代码步骤</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1866.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      
      &lt;/span&gt;&lt;span&gt;</author>
    <comments>
      BLOG
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>用Visual C++实现PDF文件的显示</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1865.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      祝晓鹰 蒙洁 彭燕
</author>
    <comments>
      计算机与信息技术
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC++设计基于ODBC的数据库管理系统</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1864.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      刘涛
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC++中利用/GS开关防止缓冲区溢出</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1863.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      谢启东编译
      &lt;/sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>在应用程序中播放声音资源文件</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1862.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      刘涛
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>Visual C++程序设计中的API和SDK</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1861.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      
      &lt;/span&gt;&lt;span&gt;</author>
    <comments>
      CSDN
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC++实现工具栏上添加平面组合框控件</title>
    <link>/html/C_C__/C_C__jishuziliao/20080111/1859.html</link>
    <description></description>
    <pubDate>2008-01-11</pubDate>
    <category>C/C++技术资料</category>
    <author>
      刘涛
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>

</channel>
</rss>
