我需要导入一个excel模板并将其编辑(添加数据)作为phonegap应用程序的一部分:我的想法是加载一个excel文件并将其转换为用户可以添加数据的html表,我仍然可以&# 39;弄清楚如何使用javascript对其进行编码。
你能帮助我,或者给我一些提示,说明我怎么能这样做?
答案 0 :(得分:0)
请按照以下步骤操作:
int main()
{
int n;
printf("Enter the limit of the factorial series\n");
scanf("%d", &n);
int sum = 0;
int fact = 1;
for(int i = 1; i <= n; i++) {
fact *= i; // update fact, as Fact(n+1) = Fact(n) * (n+1)
sum += fact;
}
printf("The sum of the factorial series of % d terms is: %d\n", n, sum);
}
功能的相同链接将文件另存为excel。