代码搜索:8×8点阵
找到约 10,000 项符合「8×8点阵」的源代码
代码结果 10,000
www.eeworm.com/read/157219/11729467
cpp 8_8.cpp
#include
float fact(int n)
{ float k;int i;
if(n==1||n==0) k=1.0;
else k=n*fact(n-1);
return(k);
}
main()
{ int n;
scanf("%d",&n);
printf("%f",fact(n));
}
www.eeworm.com/read/155928/11837733
txt 8-8.txt
/* 范例:8-8 */
#include
void arith(int *k) /* 传址方式 */
{
*k=*k+1;
}
/* 函数arith()在传递参数时,int *k所执行的动作为 int *k;
k = &i;
,也就是定义指针变量k,并把变量i的地址赋给指针变量k */
www.eeworm.com/read/258547/11856435
txt 8-8.txt
/* 范例:8-8 */
#include
void arith(int *k) /* 传址方式 */
{
*k=*k+1;
}
/* 函数arith()在传递参数时,int *k所执行的动作为 int *k;
k = &i;
,也就是定义指针变量k,并把变量i的地址赋给指针变量k */
www.eeworm.com/read/257948/11901282
c 8-8.c
#include"dos.h"
#include"conio.h"
int SetDate()
{
union REGS inregs,outregs;
inregs.h.ah=0x2B;
inregs.x.cx=1983;
inregs.h.dh=8;
inregs.h.dl=14;
intdos(&inregs,&outregs);
return outreg
www.eeworm.com/read/154628/11941712
cpp 8_8.cpp
//8_8
#include
#include
#include
void transpose(int* a, int size); //降维处理
void main()
{
int A[5][5];
randomize();
for(int i=0; i
www.eeworm.com/read/255473/12079322
bmp 8-8.bmp
www.eeworm.com/read/341108/12107546
ncb 8_8.ncb
www.eeworm.com/read/341108/12107550
dsw 8_8.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/341108/12107553
plg 8_8.plg
Build Log
--------------------Configuration: 8_8 - Win32 Debug--------------------
Command Lines
Results
8_8.exe - 0 error(s),
www.eeworm.com/read/341108/12107556
cpp 8_8.cpp
//8_8.cpp
#include
#include"str.h"
int main()
{
str s1("abcde"),s2("ABCDE"),s3;
cout