<?xml version="1.0" encoding="utf-8"?><rss version="2.0">
<channel>
<title><![CDATA[To&nbsp;be&nbsp;lucky]]></title>
<link>http://blog.pfan.cn/yourgggg</link>
<description>编程爱好者博客</description>
<language>zh-cn</language>
			<item>
		<title><![CDATA[自己写的一个高精度加法，网上有的都太高深，我本身是新手，写的大概新手比较好懂]]></title>
		<link>http://blog.pfan.cn/yourgggg/53457.html</link>
		<description><![CDATA[#include&lt;stdio.h&gt;
#include&lt;string.h&gt;

int Min(int x,int y)
{
&nbsp;&nbsp; &nbsp;if (x&lt;y)
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;return x;
&nbsp;&nbsp; &nbsp;else
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;return y;
}
&nbsp;&nbsp; &nbsp;
int main()
{

	&nbsp;&nbsp; &nbsp;char a[1100],b[1100],c[1100]={0};//输入的a，b用二进制表示

&nbsp;&nbsp; &nbsp;int answer[1000]={0};
&nbsp;&nbsp; &nbsp;int temp=0,m,n,p,i,x,y,z;
&nbsp;&nbsp; &nbsp;scanf("%s",a);
&nbsp;&nbsp; &nbsp;scanf("%s",b);
&nbsp;&nbsp; &nbsp;x=strlen(a);
&nbsp;&nbsp; &nbsp;y=strlen(b);&nbsp;&nbsp; &nbsp;
&nbsp;&nbsp; &nbsp;//for(x=1000;a[x]!='\0';x--){}
&nbsp;&nbsp; &nbsp;//for(y=1000;b[y]!='\0';y--){}
&nbsp;&nbsp; &nbsp;x=x-1;
&nbsp;&nbsp; &nbsp;y=y-1;
&nbsp;&nbsp; &nbsp;z=Min(x,y);
&nbsp;&nbsp; &nbsp;for(i=0;i&lt;=z;i++)
&nbsp;&nbsp; &nbsp;{
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;if((a[x-i]==b[y-i])&amp;&amp;(a[x-i]=='1'))
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;]]></description>
		<author><![CDATA[yourgggg]]></author>
		<pubDate>2012-05-04 20:09:00</pubDate>
		</item>
		</channel>
</rss>