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. single_file_source

    0下载:
  2. DispHelper允许您调用一个非常简单的printf风格的语法的COM对象。 DispHelper可用于从C + +或即使是普通的C,它与大多数Windows编译器 包括DEV - CPP的Visual C+ +和LCC- WIN32。包括在您的项目DispHelper 不能简单,因为它是在压缩单个文件的版本。-DispHelper allows you to call COM objects with an extremely simple printf style synta
  3. 所属分类:Other systems

    • 发布日期:2017-03-25
    • 文件大小:13444
    • 提供者:谢娜
  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. myTestFunctor

    0下载:
  2. c++ 的 functor实现,支持c函数和成员函数,使用非常简单,源码带使用例子 包含头函数:#include "Functor.h" 初始化c函数指针 Functor< int, int, int, int, int, int > fun1( &FuncSum ) printf( "fun1: d\n", fun1.Exec( 1, 2, 3, 4, 5 ) ) Functor< int, int, int, int, int, int > f
  3. 所属分类:Other systems

    • 发布日期:2017-04-15
    • 文件大小:9092
    • 提供者:zmy
  1. littleprogramforC

    0下载:
  2. 一些以C語言撰寫的小程式,包括printf函數的實作、字串轉浮點數、浮點數轉字串以及最小擴張樹問題等等。-Some with small programs written in C language, including the printf function of the implementation, string float switch, float switch to the string and the minimum spanning tree problem and so on.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-14
    • 文件大小:3633
    • 提供者:鄧慧鈴
  1. cpp2

    0下载:
  2. C,C++ Questions 1. Base class has some virtual method and derived class has a method with the same name. If we initialize the base class pointer with derived object,. calling of that virtual method will result in which method being called? a.
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:34798
    • 提供者:bhavin
  1. printf1

    0下载:
  2. c语言环境下的printf 源代码,具备多种数据类型的输出能力-c language environment printf source code, with the ability to output multiple data types
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:1157
    • 提供者:赵楠
  1. 02

    0下载:
  2. /* 十进制输出 */ printf("int_a = #o\n",int_a) /* 带标识符八进制输出 */ printf("int_a = #x\n",int_a) /* 带标识符十六进制输出 */ printf("char_e = c\n",char_e) /* 字符输出 */ printf("float_pi = f\n",float_pi) /* 实型输出 */ printf("double_g = 15.14g\n",double_pi) /* 15位
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-16
    • 文件大小:50123
    • 提供者:zouxuan01
  1. 03

    0下载:
  2. /* 十进制输出 */ printf("int_a = #o\n",int_a) /* 带标识符八进制输出 */ printf("int_a = #x\n",int_a) /* 带标识符十六进制输出 */ printf("char_e = c\n",char_e) /* 字符输出 */ printf("float_pi = f\n",float_pi) /* 实型输出 */ printf("double_g = 15.14g\n",double_pi) /* 15位
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-15
    • 文件大小:29614
    • 提供者:zouxuan01
  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. exe

    0下载:
  2. 求三角形面积 判断三角形的种类以计算面积-#include<stdio.h> #include<math.h> main() { double a,b,c,p,S,i printf("Input a,b,c\n") scanf(" lf lf lf",&a,&b,&c) if(a+b>c&&a+c>b&&b+c>a){ p=(a+b+c)/2 S=sqrt((p-a)*(p-b)*(p-c)
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-14
    • 文件大小:2278
    • 提供者:洛洛
  1. THERR

    0下载:
  2. hello world hello world, c++ automatic entry。printf 详细用法-hello world hello world, c++ automatic entry. printf detailed usage
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-24
    • 文件大小:180578
    • 提供者:mary
  1. printf

    0下载:
  2. C++小程序,实现将计算结果打印在程序界面中的功能-print the result in the program Window
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-03
    • 文件大小:608350
    • 提供者:paul
  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
  1. Desktop

    0下载:
  2. In this program, an integer variable number is declared. The printf() function displays Enter an integer: on the screen. Then, the scanf() function reads an integer data from the user and stores in variable number. Finally, the value stored in
  3. 所属分类:其他

    • 发布日期:2018-04-29
    • 文件大小:33792
    • 提供者:knidra
  1. c语言练习题

    0下载:
  2. Exercise 5: ‘for’ and ‘do … while” repetition statements 1. ​Write a program which uses a do/while loop to print out the first 10 powers of 2 other than 0 (ie. it prints out the values of 21, 22, ..., 210). Use a for loop to do the same. 注意 po
  3. 所属分类:其他小程序

« 12 »
搜珍网 www.dssz.com