题解 1248: 简单的事情

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

简单的事情 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>long long c(int n,int m){ long long s=1; int i,j; if((n-m)>m)   m=n-……

aaaaaaaaaaaaaaaaaaa

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){        int n,m;        while(~scanf("%d%d",&n,&m))     ……

简单的事情 (C语言代码)

摘要:解题思路: 公式。注意事项:注意范围。参考代码:#include<stdio.h>long long count(int n){ int i; long long s=1; for(i=n;i>0;i……

简单的事情(java)

摘要:解题思路:注意事项:参考代码:package c.dopp;import java.util.Scanner;public class math {    public static void mai……

简单的事情 (Java代码)

摘要:解题思路:    n!/(m!*(n-m)!)注意事项:参考代码: import java.util.Scanner; public class C1248 { public static……

编写题解 1248: 简单的事情

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ double a,b,c,d; while(scanf("%lf%lf",&a,&b)!=EOF){……

1248: 简单的事情

摘要:```cpp #include using namespace std; unsigned long long int jiecheng(int n) { if(n==0) ……