CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - printf.c

搜索资源列表

  1. 用c编写的N*N的螺旋矩阵源代码

    0下载:
  2. /* 实现效果: 1 2 6 7 15 3 5 8 14 16 4 9 13 17 22 10 12 18 21 23 11 19 20 24 25 */ #include <stdio.h> #define N 5 //阶数,即N*N的螺旋矩阵 void main() {     int i, j, num=1, a[N][N];     for(i=0; i<=N/2; i++) &nb
  3. 所属分类:其他小程序

    • 发布日期:2008-05-05
    • 文件大小:4395
    • 提供者:good@588
  1. c环境下的编译器

    0下载:
  2. 在c环境下的编译器 一.实验完成主要功能描述: 1.if语句 2.if_else语句 3.while语句 4.数组 5.函数调用 6.对外部函数printf的调用(用于打印) 二.测试环境 1.fedora core 4(OS) 2.lex version 2.5.4 3.yacc 4.gcc (GCC) 4.0.0 20050519 (Red Hat 4.0.0-8) -in the context of a compiler. Exper
  3. 所属分类:嵌入式Linux

    • 发布日期:2008-10-13
    • 文件大小:5945
    • 提供者:韩天毅
  1. c

    0下载:
  2. c++冒泡排序#include \"stdio.h\" void sort() { int i,count=0,a[20] int k=20 printf(\"please input 20 defferent numbers?\\n\") for(i=0 i<20 i++) scanf(\" %d\\a\",&a[i]) while(count<20) { for(i=0 i<k i++)
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:623
    • 提供者:李仅
  1. ag

    0下载:
  2. 词法分析程序,可对以下的C源程序进行分析:main() {int a[12] ,sum for(i=1 i<=12 i++) {for(j=1 j<=12 j++)scanf(\"%d\",&a[i][j]) } for(i=12 i>=1 i--){ for(j=12 j>=1 j--){ if(i==j&&i+j==13)sum+=a[i][j] } } printf(\"%c\",sum) }-lexical analysis procedures, right b
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:1382
    • 提供者:范铮
  1. 优美C语言(3)

    0下载:
  2. 3. 源程序要正确地运行,必须要有什么函数?(单选) A. printf函数 B. 自定义的函数 C. main函数 D. 不需要函数 答案: C-3. Source code to run correctly, we must have what function (Option) A. B. printf function defined function main function D. C. function need not answer : C
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:15241
    • 提供者:gjc
  1. c语言教程(www.vcok.com版)

    0下载:
  2. 经典c程序100例==1--10 【程序1】 题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? 1.程序分析:可填在百位、十位、个位的数字都是1、2、3、4。组成所有的排列后再去       掉不满足条件的排列。 2.程序源代码: main() { int i,j,k printf(\"\\n\") for(i=1 i<5 i++)    /*以下为三重循环*/  for(j=1 j<5 j++)    for (k=1 k<5 k++)   
  3. 所属分类:WEB源码

    • 发布日期:2008-10-13
    • 文件大小:304386
    • 提供者:刘宋
  1. 征服4.0马端源码

    1下载:
  2. using System; using System.Collections.Generic; using System.Text; namespace NewestCOServer { public class Cryption { class CryptCounter { UInt16 m_Counter = 0; public byte Key2
  3. 所属分类:Windows编程

  1. tony

    0下载:
  2. #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} int main(void) { int a=73,b=85,c=66 { if (a>=90) printf("a=A等級!!\n") else if (a>=80) printf("73分=B等級!!\n") else if (a>=70) printf("7
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:31954
    • 提供者:林小世
  1. tony

    0下载:
  2. 溫度華氏轉變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} int main(void) { int a=73,b=85,c=66 { if (a>=90) printf("a=A等級!!\n") else if (a>=80) printf("73分=B等級!!\n") else if (a>=70)
  3. 所属分类:Algorithm

    • 发布日期:2017-04-01
    • 文件大小:31930
    • 提供者:林小世
  1. tony

    0下载:
  2. 溫度華氏轉變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} int main(void) { int a=73,b=85,c=66 { if (a>=90) printf("a=A等級!!\n") else if (a>=80) printf("73分=B等級!!\n") else if (a>=70)
  3. 所属分类:Algorithm

    • 发布日期:2017-04-06
    • 文件大小:6845
    • 提供者:林小世
  1. Hanoi

    0下载:
  2. 一个Hanoi的小游戏 void Hanoi(int n, char x,char y,char z) { if (n==1) { printf("%c %d %c\n",x,n,z) return } Hanoi(n-1,x,z,y) printf("%c %d %c\n",x,n,z) Hanoi(n-1,y,x,z) }-Hanoi in a game void Hanoi (int n, char x, char
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:6717
    • 提供者:123
  1. printf

    0下载:
  2. 本人参照linux 0.1内核源代码写的printf函数的实现,支持 c, s, o, d, x, f的打印输出-I am the light of linux 0.1 kernel source code to write to achieve the printf function in support of c, s, o, d, x, f print output
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-26
    • 文件大小:2321
    • 提供者:phili
  1. printf.c

    0下载:
  2. printf implementation (small) for microcontrollers
  3. 所属分类:Other Embeded program

    • 发布日期:2017-04-04
    • 文件大小:2161
    • 提供者:Eugene Leigh
  1. C-language--game

    0下载:
  2. C语言写的数独猜谜游戏 游戏功能说明: 1.有简单、一般和困难3种难度选择,每次开始游戏时程序随机生成符合难度要求的数独题。 2.游戏中使用方向键控制光标。1-9数字键填入数字。(不支持使用小键盘) 3.使用DEL键消除填写有误的数字,随时使用ESC键可以退出游戏。 4.格子左上角偶尔会出现一个笑脸。经排查未发现等价于printf(" c",2) 的语句,求高人指点。 - C language game
  3. 所属分类:Other Riddle games

    • 发布日期:2017-04-01
    • 文件大小:2309
    • 提供者:
  1. printf.c

    0下载:
  2. Unix原版输出函数printf int printf(const char*, va_list) -Unix original output functions int printf(const char*, va_list)
  3. 所属分类:Driver develop

    • 发布日期:2017-11-12
    • 文件大小:2429
    • 提供者:cyztuo
  1. C-language--game

    0下载:
  2. C语言写的数独猜谜游戏游戏功能说明: 1.有简单、一般和困难3种难度选择,每次开始游戏时程序随机生成符合难度要求的数独题。 2.游戏中使用方向键控制光标。1-9数字键填入数字。(不支持使用小键盘) 3.使用DEL键消除填写有误的数字,随时使用ESC键可以退出游戏。 4.格子左上角偶尔会出现一个笑脸。经排查未发现等价于printf(" c",2) 的语句,求高人指点。- C language game
  3. 所属分类:Game Program

    • 发布日期:2017-04-13
    • 文件大小:2354
    • 提供者:coupfo
  1. C#直流电机pid调速

    2下载:
  2. 用C#编写的串口调试软件,下位机在STM32上测试通过,下位机发送数据的格式如printf("%s%f%s%f%s",":"x1":"x2":")单片机串口发送数据(Written in C# serial debugging software, the lower computer on the STM32 test passed, the lower machine to send data format, su
  3. 所属分类:C#编程

    • 发布日期:2017-12-29
    • 文件大小:98304
    • 提供者:ym133
  1. 1

    0下载:
  2. 4 examples to C that help you to understand C better
  3. 所属分类:其他

    • 发布日期:
    • 文件大小:2048
    • 提供者:xiaohuihui1
  1. C语言中printf的使用

    0下载:
  2. printf()函数是式样化输出函数, 一般用于向准则输出设备按规定式样输出消息。正在编写步骤时经常会用到此函数。printf()函数的挪用式样为: printf("<式样化字符串>",<参量表>);(The printf () function is a stylized output function, which is generally used to output messages to a standard output dev
  3. 所属分类:书籍源码

    • 发布日期:2018-04-29
    • 文件大小:5120
    • 提供者:Bruce Leung
  1. C - Hello World!

    0下载:
  2. The #include <stdio.h> is a preprocessor command. This command tells compiler to include the contents of stdio.h (standard input and output) file in the program. The stdio.h file contains functions such as scanf() and print() to take input and
  3. 所属分类:其他

    • 发布日期:2018-04-29
    • 文件大小:17408
    • 提供者:knidra
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com