简单的事情-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { …… 题解列表 2020年02月15日 0 点赞 0 评论 547 浏览 评分:9.9
1248: 简单的事情 摘要:```cpp #include using namespace std; unsigned long long int jiecheng(int n) { if(n==0) …… 题解列表 2023年02月01日 0 点赞 0 评论 151 浏览 评分:9.9
编写题解 1248: 简单的事情 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ double a,b,c,d; while(scanf("%lf%lf",&a,&b)!=EOF){…… 题解列表 2021年10月31日 0 点赞 0 评论 340 浏览 评分:9.9
简单的事情-题解(C++代码)(看到大佬的,服了) 摘要:先看看我自己写的,思路比较一般; 先写个阶乘函数,再在主函数中调用,这样比较灵活。。。 程序实现: ```cpp #include using namespace std; long lo…… 题解列表 2019年08月12日 0 点赞 0 评论 348 浏览 评分:9.9
简单的事情 (C语言代码) 摘要:解题思路: n!/m!=(m+1)*(m+2)*...*n!(n-m)!=1*2*...*(n-m) 参考代码:include <stdio.h> int main() { int n,m…… 题解列表 2018年11月30日 1 点赞 0 评论 593 浏览 评分:9.5
简单的事情,简单明了 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double M,K,S=1; int i,j; while(…… 题解列表 2019年02月10日 0 点赞 0 评论 356 浏览 评分:2.0
简单的事情 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 求组合数 { public static long jc(int num) { long j=1; for(int k=2;k<num+1;…… 题解列表 2018年05月02日 0 点赞 0 评论 413 浏览 评分:0.0
简单的事情 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i, m, n, item; while (scanf("%d%d", &m, &n) != …… 题解列表 2017年12月01日 0 点赞 0 评论 638 浏览 评分:0.0
简单的事情 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>long long c(int n,int m){ long long s=1; int i,j; if((n-m)>m) m=n-…… 题解列表 2018年01月11日 0 点赞 0 评论 598 浏览 评分:0.0
编写题解 1248: 简单的事情 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;unsigned long long int jiecheng(int n){ if(n…… 题解列表 2022年04月24日 0 点赞 0 评论 131 浏览 评分:0.0