代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/407559/11415594
c ex15.c
#include /* special function register declarations */
/* for the intended 8051 derivative */
#include
www.eeworm.com/read/407553/11416037
c 全排列3.c
#include
int m;
void pn(int a[],int n)
{
int i,j,mark;
for(j=1;j
www.eeworm.com/read/407553/11416044
c 全排列1.c
#include "stdio.h"
int n,a[11]={0},b[11];
void f(int t)
{ int i,p;
for (i=1;i
www.eeworm.com/read/407541/11416987
cpp 100~1000之间各个位数数字之和=n的整数.cpp
#include /**/
void main()
{
while(1)
{
printf("\n\t求100~1000之间各个位数数字之和﹦n (n27时结束)的整数\n\n");
int n;
printf(" 输入n的值: "); scanf("%d",&n);
if(n27) {break;}
//
www.eeworm.com/read/407541/11416990
cpp y 字符串排序 冒泡升序.cpp
/**/
#include "stdio.h" //导入包含I/O函数的头文件stdio.h
#include "string.h" //导入包含串处理函数的头文件
int main()
{
printf("\n\t字符串排序,冒泡法升序:\n\n");
while(1)
{
printf(" 输入员工姓名,每个姓名以回车分隔,输入结束按'#'键:\n\n
www.eeworm.com/read/407541/11416998
cpp 一维数组 冒泡升序 二分法查找某数 262.cpp
/**/
#include //导入包含I/O函数的头文件stdio.h
#include //导入包含随机数函数的头文件stdlib.h
#include //导入 的头文件time.h
void main()
{
printf("\n\t在升序数组中二分(折半)法查找某数\n\n");
www.eeworm.com/read/407541/11417005
cpp 一维数组 冒泡法 降序.cpp
/**/
#include //导入包含I/O函数的头文件stdio.h
#include //导入包含随机数函数的头文件stdlib.h
#include //导入 的头文件time.h
void main()
{while(1)
{
printf("\n\t冒泡排序法 降序递减\n\
www.eeworm.com/read/407541/11417006
cpp + c循环模板.cpp
/**/
#include //导入包含I/O函数的头文件stdio.h
#include //导入包含随机数函数的头文件stdlib.h
#include //导入 的头文件time.h
#include //导入包含数学类库函数的头文件math.h
#include"stdio
www.eeworm.com/read/407541/11417007
cpp 99乘法表.cpp
#include /**/
void main()
{
printf("\n\t\t\t\t九九乘法表\n");
printf("-----------------------------------");
printf("-----------------------------------\n");
for(int i=1;i
www.eeworm.com/read/407541/11417027
cpp + c选择循环模板.cpp
/**/
#include //导入包含I/O函数的头文件stdio.h
#include //导入包含随机数函数的头文件stdlib.h
#include //导入 的头文件time.h
#include //导入包含数学类库函数的头文件math.h
#include"stdio