一·#include<stdio.h> #include<math.h> int main() { float a, b, c, x1, x2; float delta, real, imag; printf("Enter a, b, c: "); while(scanf("%f%f%f", &a, ...
分类:
其他好文 时间:
2020-11-21 11:51:42
阅读次数:
3
实验1#include <math.h> #include <stdio.h> int main() { float a, b, c, x1, x2; float delta, real, imag; printf("Enter a, b, c: "); while(scanf("%f%f%f", ...
分类:
其他好文 时间:
2020-11-20 12:08:00
阅读次数:
9
#include <math.h> #include<stdio.h> int main (){ float a, b, c, x1, x2; float delta, real, imag; printf("Enter a, b, c: "); while(scanf("%f%f%f%f",&a, ...
分类:
其他好文 时间:
2020-11-20 11:37:01
阅读次数:
10
#include<math.h> #include<stdio.h> int main(){ float a,b,c,x1,x2; float delta,real,imag; printf("Enter a,b,c:"); while(scanf("%f%f%f",&a,&b,&c) != EOF ...
分类:
其他好文 时间:
2020-11-20 11:32:25
阅读次数:
7
实验内容 1.实验任务1 #include<math.h> #include<stdio.h> int main(){ float a,b,c,x1,x2; float delta,real,image; printf("Enter a,b,c: "); while(scanf("%f,%f,%f" ...
分类:
其他好文 时间:
2020-11-19 12:36:32
阅读次数:
6
ex1 #include <stdio.h> #include <math.h> int main() { float a,b,c,x1,x2; float delta,real,imag; printf("Enter a,b,c: "); while(scanf("%f%f%f",&a,&b,&c ...
分类:
其他好文 时间:
2020-11-19 12:21:43
阅读次数:
5
任务1 //一元二次方程求解 //重复执行,直到按ctrl+z结束 // #include<math.h> #include<stdio.h> int main(){ float a,b,c,x1,x2; float delta,real,imag; printf("Enter a, b, c: " ...
分类:
编程语言 时间:
2020-11-19 12:18:12
阅读次数:
8
# include<stdio.h> # include<stdlib.h> # include<math.h> int main(){ float a,b,c,x1,x2; float delta,real,imag; printf("请输入a,b,c:"); while(scanf("%f%f% ...
分类:
其他好文 时间:
2020-11-18 12:56:50
阅读次数:
11
NAT模式配置httpd & httpds 环境如下: 主机 ip 角色 调度器 192.168.197.141 dip 调度器 192.168.197.250 vip Real server1 192.168.197.142 rip Real server2 192.168.197.143 rip ...
分类:
其他好文 时间:
2020-11-17 12:56:57
阅读次数:
23
Docker--consule-Nginx群集负载均衡&harbor
分类:
其他好文 时间:
2020-11-10 11:25:37
阅读次数:
6