编程练习11
摘要:
大数相乘 1 //大数相乘 2 #include <iostream> 3 using namespace std; 4 5 void invert(char str1[],char str2[]) 6 { //------------------------------------------- 7 //这前面都是初始化操作,没什么东西 8 int len1=strlen(str1),len2=strlen(str2); 9 int* num1=(int*)malloc(sizeof(int)*len1);10 int* num2=(int*)malloc(... 阅读全文
posted @ 2012-09-13 09:30 lyncre 阅读(152) 评论(0) 推荐(0)
浙公网安备 33010602011771号