码迷,mamicode.com
首页 >  
搜索关键字:最大数和最小数    ( 32个结果
最大数和最小数
最大数#include <stdio.h>#define MAX 10int main() { int n, a[MAX]; printf("Input the number of figure(<10):\n"); scanf("%d",&n); for (int i = 0; i < n; i+ ...
分类:其他好文   时间:2020-05-04 15:48:54    阅读次数:172
实验3
ex.1 解一元二次方程 #include <math.h> #include <stdio.h> #include <stdlib.h> int main() { float a, b, c, x1, x2; float delta, real, imag; printf("Enter a, b, ...
分类:其他好文   时间:2019-11-19 01:25:21    阅读次数:104
实验三
/* 编程找出5个整数的最大数和最小数 《C语言程序设计教程学习指导》p122实验内容(3) */ #include <stdio.h> #include <stdlib.h> int main() { int number, max, min, n; n=1; printf("输入第%d个数: " ...
分类:其他好文   时间:2019-11-17 13:06:24    阅读次数:81
实验3
/* 编程找出5个整数的最大数和最小数 《C语言程序设计教程学习指导》p122实验内容(3) */ #include <stdio.h> #include <stdlib.h> int main() { int number, max, min, n; n=1; printf("输入第%d个数: " ...
分类:其他好文   时间:2019-11-16 19:39:46    阅读次数:68
实验3
Part2 补足代码 /* 编程找出5个整数的最大数和最小数 《C语言程序设计教程学习指导》p122实验内容(3) */ #include <stdio.h> #include <stdlib.h> int main() { int number, max, min, n; n=1; printf( ...
分类:其他好文   时间:2019-11-16 14:45:26    阅读次数:72
[动态规划] leetcode 152 Maximum Product Subarray
problem:https://leetcode.com/problems/maximum-product-subarray 类似买卖股票,需要维护两个状态,当前最大数和最小数。 ...
分类:其他好文   时间:2019-08-10 09:37:45    阅读次数:99
Python验证6174猜想
num=int(input()) c=num while c!=6174: digits=list(str(c)) digits.sort(reverse=True)#排列最大数和最小数 if len(digits)<4: digits.append('0') a=int(''.join(digit... ...
分类:编程语言   时间:2019-05-02 17:04:11    阅读次数:407
实验三
part1 demo1.cpp 运行结果 demo2.cpp demo3.cpp 运行结果 demo4.cpp 理解控制语句continue和break的功能 demo6-1.cpp demo6-2 Part 2.补足程序,使得程序运行 编程中找出五个整数中的最大数和最小数,并输出找出的最大数和最小 ...
分类:其他好文   时间:2019-04-17 00:04:32    阅读次数:146
【算法拾遗】最大数和最小数
转载请注明出处:http://blog.csdn.net/ns_code/article/details/28735533 求一个数组中的最大值和最小值。我们一般的做法是扫描一遍数组求的最大值,扫描一遍数组求最小值,这样做须要比較2N次才干求解。而实际上我们能够比較1.5N次就可以得到结果。考虑例如 ...
分类:编程语言   时间:2017-06-02 13:26:17    阅读次数:196
codevs 2804 最大最小数质因数 x
题目描述 Description 先输入n,n<=20;再依次输入n个不同的数,每个数<=1000000;找出最大数和最小数,并输出最大最小数的质因数,没有质因数则输出0。 题目描述 Description 先输入n,n<=20;再依次输入n个不同的数,每个数<=1000000;找出最大数和最小数, ...
分类:其他好文   时间:2017-04-06 19:39:59    阅读次数:166
32条   1 2 3 4 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!