C语言训练-阶乘和数*-题解(借用数组) 摘要:```c #include int main() { int i,n,sum=0,t,k,p,a[5],u=0,temp; for(i=1;i0) {p=1; t=n%10; …… 题解列表 2019年12月08日 0 点赞 0 评论 415 浏览 评分:8.0
C语言训练-阶乘和数*-题解(C语言代码) 摘要:1、此题依据以前学的知识不难作答,主要是输出格式不好控制,但方法对了也很容易 2、因为要多次判断同类型的东西,所以写两个函数,一个求一个数的阶乘,另一个判断一个数是否是阶乘和数。 3、输出格式要自…… 题解列表 2019年11月22日 0 点赞 0 评论 626 浏览 评分:0.0
C语言训练-阶乘和数*-题解(C语言代码) 摘要:思路: 1.首先在while()函数内,将数除以10取先取其余数,再保留其商,然后累加每次余数的阶乘。 2.如果最后只剩下最高位,那么就求取最高位的阶乘,然后在判断。 参考代码如下: ```c…… 题解列表 2019年10月01日 0 点赞 0 评论 343 浏览 评分:0.0
C语言训练-阶乘和数*(纯新手想法了。。。。 摘要:新手的方法 自增,判断,储存,该位,输出 ```c #include #include"math.h" int act(int x) {//求阶乘 int y = 0; …… 题解列表 2019年09月22日 0 点赞 0 评论 646 浏览 评分:8.0
C语言训练-阶乘和数* (C语言代码) 摘要:解题思路: (1)在1-100000里面循环找所求数:for (int i=1; i<100000 ; i++) (2)每个数从低位数到高位数求阶层,设sum求个位数阶层…… 题解列表 2019年04月26日 0 点赞 0 评论 384 浏览 评分:0.0
C语言训练-阶乘和数* (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>//计算阶乘 int fun1(int m){ int j,sum=1; for(j=1;j<=m;j++){ sum*=j; …… 题解列表 2019年04月14日 0 点赞 0 评论 279 浏览 评分:0.0
这题不用做了!!!!答案1也通过不信试试(Java代码) 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { System.out.println(…… 题解列表 2019年03月14日 0 点赞 1 评论 191 浏览 评分:0.0
C语言训练-阶乘和数* (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static int f(int n) { if(n…… 题解列表 2019年03月14日 0 点赞 0 评论 455 浏览 评分:2.0
C语言训练-阶乘和数* (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a, b, c,d,e,arr[100000],l=-1,w=-1; int temp1 = 0, t…… 题解列表 2019年03月01日 0 点赞 0 评论 336 浏览 评分:0.0
C语言训练-阶乘和数* (C语言代码) 摘要:解题思路:结合了几个题解可以参考注意事项:参考代码:#include<stdio.h>#include <math.h>int fun(int);int main(){ int i,n,num,…… 题解列表 2019年02月28日 1 点赞 0 评论 447 浏览 评分:0.0