C语言的编程练习题
问题一: 问题描述:输入n个数,n<=100,找到其中最小的数和最大的数 输入样例: 4 1 2 3 4 输出样例:14复制代码 1 #include "stdio.h" 2 int main() { 3 int i=...
c语言编程练习题:7-19 计算天数
本题要求编写程序计算某年某月某日是该年中的第几天。输入格式:输入在一行中按照格式“yyyy/mm/dd”(即“年/月/日”)给出日期。注意:闰年的判别条件是该年年份能被4整除但不能被100整除、或者能被400整除。闰年的2月有29天。输出格式:在一行输出日期是该年中的第几天。输入样例1:2009/03/02输出样例1:61输入样例2:2000/03/02输出样例2:62鸣谢湖北汽车工业学院袁科老....
c语言编程练习题:7-60 Welcome to You!
#include <stdio.h>int main(){ printf("Welcome to You!"); return 0;}这是一个特别简单的题目,后续还有一些简单输出信息的。凑字数。
c语言编程练习题:7-59 打印菱形图案
#include <stdio.h>#include <math.h>int main() { int n; if (scanf("%d", &n) != 1 || n <= 0 || n % 2 == 0) { printf("input error"....
c语言编程练习题:7-58 求幂级数展开的部分和
#include <stdio.h>#include <math.h>int main(){ double x; double sum = 1.0; double term = 1.0; int k = 1; if (scanf("%lf", ....
c语言编程练习题:7-57 求e的近似值
#include <stdio.h>#include <math.h>double cal_e(int n){ double sum=1.0, term = 1.0; int i; for (i=1; i<=n; i++){ term ....
c语言编程练习题:7-56 求给定精度的简单交错序列部分和
#include <stdio.h>int main(){ double eps; double r; int i,s=1; double sum=0; if (scanf("%lf",&eps)!=EOF){ &...
c语言编程练习题:7-55 查询水果价格
#include <stdio.h>int main(){ int count=0; int n=0; double prices[5] = {0,3.00,2.50,4.10,10.20}; char names[][7] = {"exit","apple","pear","or....
c语言编程练习题:7-54 求阶乘序列前N项和
#include <stdio.h>long fact(int n){ long r=1; int i; for (i=1;i<=n;i++){ r*=i; } return r;}int mai....
c语言编程练习题:7-53 生成3的乘方表
#include <stdio.h>#include <math.h>int main(){ int N; int i; long s; if (scanf("%d",&N)!=EOF){ for (i=0;....
本页面内关键词为智能算法引擎基于机器学习所生成,如有任何问题,可在页面下方点击"联系我们"与我们沟通。
C语言更多编程相关
开发与运维
集结各类场景实战经验,助你开发运维畅行无忧
+关注