文章 2024-06-24 来自:开发者社区

C语言的编程练习题

问题一:   问题描述:输入n个数,n<=100,找到其中最小的数和最大的数  输入样例: 4  1 2 3 4  输出样例:14复制代码 1 #include "stdio.h" 2 int main() { 3 int i=...

文章 2023-12-27 来自:开发者社区

c语言编程练习题:7-19 计算天数

本题要求编写程序计算某年某月某日是该年中的第几天。输入格式:输入在一行中按照格式“yyyy/mm/dd”(即“年/月/日”)给出日期。注意:闰年的判别条件是该年年份能被4整除但不能被100整除、或者能被400整除。闰年的2月有29天。输出格式:在一行输出日期是该年中的第几天。输入样例1:2009/03/02输出样例1:61输入样例2:2000/03/02输出样例2:62鸣谢湖北汽车工业学院袁科老....

文章 2023-12-27 来自:开发者社区

c语言编程练习题:7-60 Welcome to You!

#include <stdio.h>int main(){    printf("Welcome to You!");    return 0;}这是一个特别简单的题目,后续还有一些简单输出信息的。凑字数。

c语言编程练习题:7-60 Welcome to You!
文章 2023-12-27 来自:开发者社区

c语言编程练习题:7-59 打印菱形图案

#include &lt;stdio.h&gt;#include &lt;math.h&gt;int main() { &nbsp; &nbsp;int n; &nbsp; &nbsp;if (scanf("%d", &amp;n) != 1 || n &lt;= 0 || n % 2 == 0) { &nbsp; &nbsp; &nbsp; &nbsp;printf("input error"....

c语言编程练习题:7-59 打印菱形图案
文章 2023-12-27 来自:开发者社区

c语言编程练习题:7-58 求幂级数展开的部分和

#include &lt;stdio.h&gt;#include &lt;math.h&gt;int main(){ &nbsp; &nbsp;double x; &nbsp; &nbsp;double sum = 1.0; &nbsp; &nbsp;double term = 1.0; &nbsp; &nbsp;int k = 1; &nbsp; &nbsp;if (scanf("%lf", ....

c语言编程练习题:7-58 求幂级数展开的部分和
文章 2023-12-27 来自:开发者社区

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-57 求e的近似值
文章 2023-12-27 来自:开发者社区

c语言编程练习题:7-56 求给定精度的简单交错序列部分和

#include &lt;stdio.h&gt;int main(){ &nbsp; &nbsp;double eps; &nbsp; &nbsp;double r; &nbsp; &nbsp;int i,s=1; &nbsp; &nbsp;double sum=0; &nbsp; &nbsp;if (scanf("%lf",&amp;eps)!=EOF){ &nbsp; &nbsp; &amp;...

c语言编程练习题:7-56 求给定精度的简单交错序列部分和
文章 2023-12-27 来自:开发者社区

c语言编程练习题:7-55 查询水果价格

#include &lt;stdio.h&gt;int main(){ &nbsp; &nbsp;int count=0; &nbsp; &nbsp;int n=0; &nbsp; &nbsp;double prices[5] = {0,3.00,2.50,4.10,10.20}; &nbsp; &nbsp;char names[][7] = {"exit","apple","pear","or....

c语言编程练习题:7-55 查询水果价格
文章 2023-12-27 来自:开发者社区

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-54 求阶乘序列前N项和
文章 2023-12-27 来自:开发者社区

c语言编程练习题:7-53 生成3的乘方表

#include &lt;stdio.h&gt;#include &lt;math.h&gt;int main(){ &nbsp; &nbsp;int N; &nbsp; &nbsp;int i; &nbsp; &nbsp;long s; &nbsp; &nbsp;if (scanf("%d",&amp;N)!=EOF){ &nbsp; &nbsp; &nbsp; &nbsp;for (i=0;....

c语言编程练习题:7-53 生成3的乘方表

本页面内关键词为智能算法引擎基于机器学习所生成,如有任何问题,可在页面下方点击"联系我们"与我们沟通。

开发与运维

集结各类场景实战经验,助你开发运维畅行无忧

+关注