排序:上传时间 相关度 下载量 查看数

printf 104

按分类查找:

  • C语言用户注册及登录

    #include<stdio.h> #include<stdlib.h> #include<conio.h> #include<string.h> main(void) { &nbsp; char new_name[4], name[4]; &nbsp; &nbsp; int new_sn ,sn; &nbsp; &nbsp; printf(" &nbsp; &nbsp; &nbsp; &nbsp;【注册】\n\n"); &nbsp; &nbsp; printf("请输入用户名(四位英文字母):"); &nbsp; &nbsp; scanf("%s", ...

    /dl/509083.html

    标签: C语言

    上传时间: 2015-12-30

    上传用户:gjatd1987

  • STM8 Printf 例子

    一个STM8入门例子,初学者的福音,包含库2.1版本,不可错过哦

    /dl/510331.html

    标签: STM8 DEMO

    上传时间: 2016-04-08

    上传用户:Sapphy

  • 离散实验 一个包的传递 用warshall

    &nbsp;实验源代码 //Warshall.cpp&nbsp;#include<stdio.h>&nbsp;void&nbsp;warshall(int&nbsp;k,int&nbsp;n)&nbsp;{&nbsp;int&nbsp;i&nbsp;,&nbsp;j,&nbsp;t;&nbsp;int&nbsp;temp[20][20];&nbsp;for(int&nbsp;a=0;a<k;a++)&nbsp;{&nbsp;printf("请输入矩阵第%d&nbsp;行元素:",a);&nbsp;for(int&nbsp;b=0;b<n;b++)&nbsp;{& ...

    /dl/512044.html

    标签: warshall 离散 实验

    上传时间: 2016-06-27

    上传用户:梁雪文以

  • 利用栈的基本操作实现将任意一个十进制整数N转化为R进制整数。

    #include <stdlib.h> #include<stdio.h> #include <malloc.h> #define stack_init_size 100 #define stackincrement 10 typedef struct sqstack { int *base; int *top; int stacksize; } sqstack; int StackInit(sqstack *s) { s->base=(int *)malloc(stack_init_size *sizeof(int)); if(!s->base) return 0; s->top=s->ba ...

    /dl/513582.html

    标签: 整数 基本操作 十进制 转化 进制

    上传时间: 2016-12-08

    上传用户:爱你198

  • 多项式计算代码

    void DFS(MGraph G, int i) { &nbsp; &nbsp; int j; &nbsp; &nbsp; visited[i] = TRUE; &nbsp; &nbsp; printf("%c ", &nbsp; &nbsp;G.vexs[i]); &nbsp; &nbsp; for (j=0; j<G.numVertexes; ++j) &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; if (G.arc[i][j]!=INFINITY &nbsp;&& &nbsp;!visited[j]) &nbsp; &nbsp; &nbsp; ...

    /dl/513812.html

    标签: 多项式 代码 计算

    上传时间: 2016-12-28

    上传用户:chenyameng

  • 运动会源代码

    #include&nbsp;<malloc.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; #include&nbsp;<stdio.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; #include&nbsp;<stdlib.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; #include&nbsp;<string.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; #define&nbsp;NULL&nbsp;0&nbsp;&nbsp; &nbsp;&nbsp ...

    /dl/513814.html

    标签: 源代码

    上传时间: 2016-12-28

    上传用户:150501

  • 学生成绩查询

    #include "string.h" #include "ctype.h" #include "stdio.h" search(char pd[]) {FILE *fp; int time=0,i=0,j=0,add[80],k=0,m; char *ch, str[900]; m=strlen(pd); if((fp=fopen("haha.txt","r"))==NULL) { printf("Cannot open this file\n"); exit(0); } for(;!feof(fp);i++) { str[i]=fgetc(fp); if(to ...

    /dl/513823.html

    标签: 查询学会少年宫

    上传时间: 2016-12-29

    上传用户:767483511

  • 学生成绩管理啊

    #include "string.h" #include "ctype.h" #include "stdio.h" search(char pd[]) {FILE *fp; &nbsp;int time=0,i=0,j=0,add[80],k=0,m; &nbsp;char *ch, &nbsp;str[900]; &nbsp;m=strlen(pd); &nbsp;if((fp=fopen("haha.txt","r"))==NULL) &nbsp;{ &nbsp; printf("Cannot open this file\n"); &nbsp; exit(0); &nbsp;} for( ...

    /dl/513824.html

    标签: 学生专用

    上传时间: 2016-12-29

    上传用户:767483511

  • java学生数据库

    /*import java.util.Scanner; //主类 public class student122 { &nbsp;&nbsp;//主方法 &nbsp;&nbsp;public static void main(String[] args){ &nbsp;&nbsp;&nbsp;&nbsp;//定义7个元素的字符数组 &nbsp;&nbsp;&nbsp;&nbsp;String[] st = new String[7]; &nbsp;&nbsp;&nbsp;&nbsp;inputSt(st); &nbsp ...

    /dl/514408.html

    标签: java 数据库

    上传时间: 2017-03-17

    上传用户:simple

  • c语言算法排序

    1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.) #include<stdio.h> #include<stdlib.h> void merge(int arr[],int low,int mid,int high){ &nbsp; ...

    /dl/514507.html

    标签: c语言 算法 排序

    上传时间: 2017-04-01

    上传用户:糖儿水嘻嘻