面试题之实现3^100次方和大整数的相乘

   今天则主要和你们来讲一下如何利用数组来存储大数据,咱们先来看第一个小的算法,实现3^100次方:算法  具体代码以下:数组   #include <stdio.h> #include <stdlib.h> #include <strings.h> #define N 500 int main(int argc,char **argv) { int s,j,i,cp,x,n,b;
相关文章
相关标签/搜索