码迷,mamicode.com
首页 >  
搜索关键字:次方    ( 3230个结果
什么是utf-8
1)开篇啰嗦 感谢这篇博客,在网上转悠了好几天,觉得下面这篇博客我读起来最最容易理解 https://blog.csdn.net/guxiaonuan/article/details/78678043 2)起源 ASCII码大家都很熟悉了,事实证明,对可以用ASCII表示的字符使用UNICODE并不 ...
分类:其他好文   时间:2019-11-19 14:15:56    阅读次数:57
32位汇编背景知识
[TOC] 背景知识 以下说的知识皆以如非特别表明,皆说的是80386CPU 1. 它的可寻址能力达到4GB 2. 通过寄存器是32位 通用寄存器是32位的,2的32次方等于4GB,就可以使用一个通用寄存器来寻址,从而不必分段。虽然在地址上不再有分段的限制问题。但是,一个地址否可以被写入,可以被多少 ...
分类:其他好文   时间:2019-11-19 12:08:26    阅读次数:69
实验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
实验三
// 一元二次方程求解 // 重复执行, 直到按Ctrl+D或Ctrl+E结束 // #include <math.h> #include <stdio.h> #include <stdlib.h> int main() { float a, b, c, x1, x2; float delta, r ...
分类:其他好文   时间:2019-11-19 01:23:36    阅读次数:90
实验三
《一元二次方程》 #include <math.h>#include <stdio.h>#include <stdlib.h>int main() { float a, b, c, x1, x2; float delta, real, imag; printf("请输入一元二次方程的系数a,b,c: ...
分类:其他好文   时间:2019-11-19 00:50:49    阅读次数:72
实验三
Part1:验证性内容 1.一元二次方程求解 通过 while(scanf("%f%f%f", &a, &b, &c))进行多次输入操作,直到输入其他格式的三项(例如,abd)或ctrl+D/E. 2.猜数字 运用do-while语句,先执行后判断。 Part2: 补足程序,使程序符合题目要求并正确 ...
分类:其他好文   时间:2019-11-19 00:49:14    阅读次数:79
实验3
// 一元二次方程求解 // 重复执行, 直到按Ctrl+D或Ctrl+E结束 // #include <math.h> #include <stdio.h> #include <stdlib.h> int main() { float a, b, c, x1, x2; float delta, r ...
分类:其他好文   时间:2019-11-18 23:31:48    阅读次数:109
实验三
// 一元二次方程求解 // 重复执行, 直到按Ctrl+D或Ctrl+E结束 // #include <math.h> #include <stdio.h> #include <stdlib.h> int main() { float a, b, c, x1, x2; float delta, r ...
分类:其他好文   时间:2019-11-18 23:28:21    阅读次数:108
实验三
// 一元二次方程求解 // 重复执行, 直到按Ctrl+D或Ctrl+E结束 // #include <math.h> #include <stdio.h> #include <stdlib.h> int main() { float a, b, c, x1, x2; float delta, r ...
分类:其他好文   时间:2019-11-18 13:10:56    阅读次数:65
实验三
Part1: 一元二次方程求解 #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, c: ...
分类:其他好文   时间:2019-11-18 12:50:44    阅读次数:50
3230条   上一页 1 ... 37 38 39 40 41 ... 323 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!