代码搜索:4
找到约 10,000 项符合「4」的源代码
代码结果 10,000
www.eeworm.com/read/476925/6742997
bmp 4_4.bmp
www.eeworm.com/read/264889/11295795
cpp 4_4.cpp
#include
using namespace std;
struct StructClass //用struct关键字定义StructClass类
{ void set_value(int n) {value=n; } //公有属性
void show_value(char *name) { cout
www.eeworm.com/read/409572/11318957
c 4-4.c
/*4-4.c*/
#include
#include
#include
#include
#include
void getstr(int x,int y,char *str){
int key;
char ch;
char s[2];
int i=0;
s[1]='\0';
s
www.eeworm.com/read/404766/11478881
fla 4-4.fla
www.eeworm.com/read/402196/11541345
c 4-4.c
#include
void function()
{
static int a = 0;
int b = 0;
a++;
b++;
printf("a=%d,b=%d\n",a,b);
}
main()
{
function();
function();
function();
}
www.eeworm.com/read/158651/11594537
bmp 4-4.bmp
www.eeworm.com/read/261738/11625802
c 4-4.c
#define MAX_VERTEX_NUM 20
typedef enum{FALSE,TRUE} Boolean;
/*自定义的真值和假值,其中FALSE实际值为0,而TRUE实际值为1*/
Boolean visited[MAX_VERTEX_NUM];/*用来表示各顶点是否已被访问过*/
typedef struct ArcCell{
int adj;
char *i