代码搜索:输出数据
找到约 10,000 项符合「输出数据」的源代码
代码结果 10,000
www.eeworm.com/read/211084/15187470
txt btreem.txt
btreeM.cpp运行结果:
创建的二叉树为:
a b c d e f g h i j k l m n o
二叉树非空!
先序遍历二叉树:
a b c d e f g h i j k l m n o
中序遍历二叉树:
b a d c f e h g j i l k n m o
后序遍历二叉树:
b d f h j l n o m k i g e c a
按层遍历二叉树
www.eeworm.com/read/211084/15187488
txt minheapm.txt
minheapm.cpp运行结果:
输出数组b:
81 41 10 20 76 96 79 47 39 8
输出当前堆H的堆顶元素:
8
输出插入后数组b:
81 41 10 20 76 96 79 47 39 8
输出逐个删除的H堆中元素:
8 10 20 39 41 47 76 79 81 96
输出当前堆H1的堆顶元素:
1
输出逐个删除的H1堆中元
www.eeworm.com/read/211084/15187491
txt btree2m.txt
btree2M.cpp运行结果:
创建的二叉树为:
a b c d e f g h i j k l m n o
二叉树非空!
先序遍历二叉树:
a b c d e f g h i j k l m n o
中序遍历二叉树:
b a d c f e h g j i l k n m o
后序遍历二叉树:
b d f h j l n o m k i g e c a
按层遍历二叉
www.eeworm.com/read/207480/15270092
ini pctolcd2002.ini
[Option]
TOP=155
LEFT=190
点阵格式=0
取模方式=0
取模走向=0
输出数制=0
每行显示数据=24
每行显示索引=24
输出索引文件=1
精简格式=1
紧凑格式=0
液晶亮点=15720604
液晶暗点=2641993
像素大小=10
自定义格式=0
输出格式=1
[Form]
TOP=-3
LEFT=-3
最大化=1
字符模式
www.eeworm.com/read/156960/5608160
cpp p3-156.cpp
#include
main()
{
//输出字符串
printf("He said \"Hello!\"");
//输出各进制整数
int i=64;
printf("\ni=%d",i); //以十进制格式输出
printf("\ni=%o",i); //以八进制格式输出
www.eeworm.com/read/174065/6783371
c ch4_4.c
/*ch4_4*/
/*数据格式输入与输出的综合例子*/
#include
#include
main()
{
char c, s[20], *p;
int a=1234;
float f=3.141592653589;
double x=0.12345678912345678;
p="Nice t
www.eeworm.com/read/181469/6783951
h md_const.h
/***************************************************/
/* 寻迹小车 FollowMe 项目 */
/* —— 主控程序电机驱动模块 */
/* 之常数声明 */
/* 20060905
www.eeworm.com/read/475550/6791112
cpp bp.cpp
#include "iostream.h"
#include "iomanip.h"
#include
#include "stdio.h"
#include
#include "stdafx.h"
#include "IniFile.h"
#define MAX 100
int n; //学习样本个数
int in
www.eeworm.com/read/474226/6816738
txt bp.txt
#include "iostream.h"
#include "iomanip.h"
#include "stdlib.h"
#include "stdio.h"
#include "math.h"
#include "ctime"
#define sqr(x) ((x)*(x))
#define N 3 //学习样本个数
#define IN 1 //输入层神经元数目
#def