《一元二次方程》 #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
#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: "); while(sc ...
分类:
其他好文 时间:
2019-11-18 23:26:23
阅读次数:
110
#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: "); while(sc ...
分类:
其他好文 时间:
2019-11-18 22:14:59
阅读次数:
72
Git (wiki: en chs )是一个免费开源的分布式版本控制系统,由linux内核作者linus Torvalds开发,大型开源项目linux kernel、Android、chromium、mono、dotnet、UE4等都使用Git管理项目 著名github网站使用Git托管所有项目代码 ...
分类:
其他好文 时间:
2019-11-18 18:52:59
阅读次数:
93
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
#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: "); while(sc ...
分类:
其他好文 时间:
2019-11-18 12:46:26
阅读次数:
62
part 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-17 01:22:37
阅读次数:
60
数据类型:整数、浮点数、复数、操作符、函数 整数: 十进制 二进制:0b/0B 八进制:0o/0O 十六进制:0x/0X 浮点数:(有长度限制) 浮点数运算存在不正确尾数(因为10进制化为二进制的时候就不是精确的了) 复数(python独有) z.real()实数部分 z.image()虚数部分 操 ...
分类:
编程语言 时间:
2019-11-16 23:17:30
阅读次数:
107
在Java中,线程的安全实际上指的是内存的安全,这是由操作系统决定的。 目前主流的操作系统都是多任务的,即多个进程同时运行。为了保证安全,每个进程只能访问分配给自己的内存空间,而不能访问别的、分配给别的进程的内存空间,这一安全特性是由操作系统保障的。但是线程却与进程不同,因为在每个进程的内存空间中都 ...
分类:
编程语言 时间:
2019-11-16 10:32:07
阅读次数:
76
MySQL支持的数据类型 一、数值类型 MySQL支持所有标准SQL数值数据类型。这些类型包括严格数值数据类型(INTEGER、SMALLINT、DECIMAL和NUMERIC),以及近似数值数据类型(FLOAT、REAL和DOUBLE PRECISION)。 关键字INT是INTEGER的同义词, ...
分类:
数据库 时间:
2019-11-13 22:25:55
阅读次数:
92