首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
介乘专题
7.6编程算并输出1的介乘加到n的介乘。
#include<conio.h>#include<stdio.h> void main(){int N; int i,s=1,t=0; printf("please input a number:\n");scanf("%d",&N); for(i=1;i<=N;i++){ s=s*i; t=t+s;} printf("The number is :%d",t);getch(); }
阅读更多...