发表评论取消回复
相关阅读
相关 求N个数的最大值,最小值,和(C语言)
入格式 第一行为整数 n,表示数的个数。 第二行有 n 个数,为给定的 n 个数,每个数的绝对值都小于 10000。 如输入: Entern:5 -159322 ...
相关 【C语言】利用递归方法求 n!
include<stdio.h> include<stdlib.h> int fib(int n) { if (n <=
相关 abc+cba=固定值n,求a、b、c.C语言详解
问题描述:求abc+cba=固定值n,的所有的a、b、c组合,n由键盘输入 编译环境vc++6.0 include <stdio.h> int
相关 求s = k ! + n ! / m !的值
《程序设计基础实训指导教程-c语言》 ISBN 978-7-03-032846-5 p141 7.1.2 上级实训内容 【实训内容1】求`s
相关 C语言用while求n!
include <stdio.h> include <stdlib.h> / run this program using the conso
相关 C语言 用if goto求n!
include <stdio.h> include <stdlib.h> / run this program using the conso
相关 【c语言】求Sn=a+aa+aaa+….+aa..a(n个a)的值
1. include <stdio.h> void main(){ int a,n,Sn=0,sum=0,item=0; prin
还没有评论,来说两句吧...