CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 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语言(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. 征服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-28
    • 文件大小:31954
    • 提供者:林小世
  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. c

    0下载:
  2. 经典c程序100例 【程序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 (
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-15
    • 文件大小:17975
    • 提供者:lengyuegg
  1. Ar1

    0下载:
  2. 在c语言中打开一个英文文档,用Si(i<=文章句子数)代替文章中的各句子。 - {while(ch=getchar()) { if ((ch>= a &&ch<= z )||(ch>= A &&ch<= Z )) {ch=ch+7 if(ch> Z &&ch<= Z +7||ch> z ) ch=ch-26 printf("
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:1815
    • 提供者:bylon
  1. Greatlist

    0下载:
  2. 声明并赋初始值。j,k作为循环计数变量仅声明不赋初始值。 第一个循环j从1到4,控制打印行数; 内部循环从0到2*j-1(对应j分别取值1,3,5,7),这个循环控制打印字符的个数;printf(" c",i) 这一句把i变量按相应的ASCII码对应的字符以字符形式打印出来;-Statement and to give the initial value. j, k as the loop counter not only to declare the initial value ass
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-11
    • 文件大小:630
    • 提供者:Gigi
  1. Printf

    0下载:
  2. 该源码的主要功能:用C来实现带有缺省参数的函数,风格规范,功能齐全,能深入理解指针的强大性以及函数printf神奇的背后。-The main function of the source: Using C to implement a function with default parameters, style specifications, functional and powerful pointer to in-depth understanding of and behind the
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:10417
    • 提供者:李晨旭
  1. C

    0下载:
  2. printf("Please shuru zhengzhiscore:") gets(temp) data.score[3]=atof(temp) data.score[4]=data.score[0]+data.score[1]+data.score -gets(temp) data.score[1]=atof(temp) printf("Please input yingyu score:") gets(temp) data.score[2]=atof(tem
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:5461
    • 提供者:wangming
  1. classical-algorithm-c-language

    0下载:
  2. c语言经典算法 【程序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
  3. 所属分类:Windows Develop

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

    0下载:
  2. 《轻松学通Visual C++》的源代码--打字测试系-" Easy to learn through the Visual C++" source code- typing test system
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:335314
    • 提供者:天涯
  1. summary-of-c-language-printf-form

    0下载:
  2. c/c++输出格式设置总结,希望对大家有所帮助-c/c++ output format summary
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-15
    • 文件大小:14950
    • 提供者:xf
  1. C-Programming-Language-100-cases

    0下载:
  2. 文件包含100个C语言程序的例子,由易到难,可以帮助初学者提高学习效率。注: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. 所属分类:Windows Develop

    • 发布日期:2017-05-22
    • 文件大小:6872573
    • 提供者:liz
  1. c

    0下载:
  2. 变温度为华氏摄氏度 然后让你知道温度为多少华氏摄氏度-#include <stdio.h> void main() { double f,c printf("请输入华氏温度:") scanf(" lf",&f) c=5.0/9.0*(f-32) printf("与华氏温度 .2lf对应的摄氏温度是: .2lf\n",f,c) }
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-06
    • 文件大小:1321
    • 提供者:李晓歌
  1. printf-and-scanf

    0下载:
  2. C或C++中 printf和scanf函数的用法和特点。很实用,也很简单!-C or C++ in the printf and scanf function usage and characteristics. Very practical, very simple!
  3. 所属分类:Other systems

    • 发布日期:2017-11-06
    • 文件大小:1143
    • 提供者:刘旭
  1. sysconvert

    0下载:
  2. 进制间的转换,顶顶顶,大学期间的作品,经供参考-#include<stdio.h> #include<math.h> int main(){ int b,c,i,j int d[10000] char a[37]={ 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , A , B , C , D , E , F , G , H , I , J , K , L , M , N , O , P , Q
  3. 所属分类:Other systems

    • 发布日期:2017-12-06
    • 文件大小:224778
    • 提供者:应超
  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-28
    • 文件大小:98304
    • 提供者:ym133
  1. 1

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

    • 发布日期:
    • 文件大小:2048
    • 提供者:xiaohuihui1
  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 »
搜珍网 www.dssz.com