码迷,mamicode.com
首页 >  
搜索关键字:visaul stdio    ( 10042个结果
实验3??🌂叁三
一·#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
Effective C++的50条建议
2020年11月16日16:11:06 尽量用const和inline而不用#define 尽量用编译器而不用预处理。 尽量用<iostream>而不用<stdio.h> scanf和printf很有用,但不是类型安全的,而且没有扩展性。 on the other hand,①有些iostream的 ...
分类:编程语言   时间:2020-11-20 12:22:07    阅读次数:24
实验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
实验3
#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
实验3
#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
堆排序实验
实验内容 【问题描述】对一含有n个整数的数组,使用堆排序将其由小到大排序。【输入形式】第一行为元素个数n,第二行为n个整数(以空格隔开)。【输出形式】输出n个整数(以空格隔开)【样例输入】 6 43 2 56 1 22 9【样例输出】 1 2 9 22 43 56 #include <stdio.h ...
分类:编程语言   时间:2020-11-19 12:29:13    阅读次数:8
实验三
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
实验3 C语言分支语句和循环语句编程应用
任务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
C语言的输入格式
#include <stdio.h> int main() { printf("hey man/n"); return 0; return的意思是返回 } #include 库函数 C语言本身提供给我们的函数 include意思是包含,包含一个<stdio.h> standard input out ...
分类:编程语言   时间:2020-11-19 12:05:52    阅读次数:7
10042条   上一页 1 ... 33 34 35 36 37 ... 1005 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!