搜索结果
找到约 104 项符合
Printf 的查询结果
按分类筛选
- 全部分类
- 单片机开发 (15)
- 源码 (15)
- Linux/Unix编程 (10)
- 嵌入式/单片机编程 (5)
- VC书籍 (5)
- 其他嵌入式/单片机内容 (4)
- 微处理器开发 (4)
- 数学计算 (4)
- VIP专区 (4)
- 中间件编程 (3)
- 数据结构 (3)
- 其他 (3)
- 编译器/解释器 (3)
- 单片机编程 (2)
- Internet/网络编程 (2)
- uCOS (2)
- 磁盘编程 (2)
- 软件设计/软件工程 (2)
- C/C++语言编程 (2)
- 技术资料 (2)
- 文件格式 (1)
- 文章/文档 (1)
- 嵌入式Linux (1)
- 系统设计方案 (1)
- 汇编语言 (1)
- 人工智能/神经网络 (1)
- 操作系统开发 (1)
- 家庭/个人应用 (1)
- *行业应用 (1)
- Linux/uClinux/Unix编程 (1)
- 教材/考试/认证 (1)
- 软件 (1)
源码 数据结构实验
#include&nbsp;<stdio.h>&nbsp;&nbsp;
#include&nbsp;<stdlib.h>&nbsp;///链式栈&nbsp;&nbsp;
&nbsp;&nbsp;
typedef&nbsp;struct&nbsp;node&nbsp;&nbsp;
{&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;data;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;struc ...
源码 数据结构实验
#include <iostream>
#include <stdio.head>
#include <stdlib.head>
#include <string.head>
#define ElemType int
#define max 100
using namespace std;
typedef struct node1
{
ElemType data;
struct node1 *next;
}Node1,*LinkList;//链栈
typedef struct
{
ElemType *base;
int top;
}SqStack;// ...
源码 学生成绩管理
#include<stdio.h>
#include<windows.h>
int xuanxiang;
int studentcount;
int banjihao[100];
int xueqihao[100][10];
char xm[100][100];
int xuehao[100][10];
int score[100][3];
int yuwen;
int shuxue[000];
int yingyu[100];
int c[100];
int p;
char x[1000][100]="",y[100][100]="";/*x学院 y专业 z班级*/&nbsp;
...
源码 成绩查询系统
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...
源码 学生成绩guanli
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...
源码 C语言编写雅可比迭代
# include<stdio.h>
# include<math.h>
# define N 3
main(){
&nbsp;&nbsp; &nbsp;float NF2(float *x,float *y);
&nbsp;&nbsp; &nbsp;float A[N][N]={{10,-1,-2},{-1,10,-2},{-1,-1,5}};
&nbsp;&nbsp; &nbsp;float b[N]={7.2,8.3,4.2},sum=0;
&nbsp;&nbsp; &nbsp;float x[N]= {0,0,0},y[N]={0},x0[N]={};
&nbsp;&nbsp; &n ...
源码 二叉树子系统
#include<stdio.h>
#define TREEMAX 100
typedef struct&nbsp; BT
{
char data;
BT *lchild;
BT *rchild;
}BT;
BT *CreateTree();
void Preorder(BT *T);
void Postorder(BT *T);
void Inorder(BT *T);
void Leafnum(BT *T);
void Nodenum(BT *T);
int TreeDepth(BT *T);
int count=0;
void main()
{
BT *T=NULL;
char ...
源码 数组子系统
#include <stdio.h>
#include <stdlib.h>
#define SMAX 100
typedef struct SPNode
{
int i,j,v;
}SPNode;
struct sparmatrix
{
int rows,cols,terms;
SPNode data [SMAX];
};
sparmatrix CreateSparmatrix()
{
sparmatrix A;
printf("\n\t\t请输入稀疏矩阵的行数,列数和非零元素个数(用逗号隔开):");
scanf("%d, ...
技术资料 ARM Linux嵌入式底层内核驱动方向学习总体路线图
目前嵌入式主要开发环境有 Linux、Wince等;Linux因其开源、开发操作便利而被广泛采用。而 Linux操作系统也只是一个简单的操作系统,简单的使用对于嵌入式开发人员来说价值并不很高,真正有价值的是掌握 Linux的基本服务和 Linux的设计理念、思想,这对于嵌入式开发人员的长期发展是很极其重要的。Linux系统有很多发行版,R ...
技术资料 STM32F103开发板 DHT11温湿度DS18B20 气体MQ-2光敏声控雨滴传感器实验程序
STM32F103开发板 DHT11温湿度DS18B20 气体MQ-2光敏声控雨滴传感器实验程序**--------------------------------------------------------------------------------------------------------** Created by: FiYu** Created date: 2015-12-12** Version: &nbsp; &nbsp; 1.0** Descriptions: DHT11温湿度传感器实验 ** ...