代码搜索:Line
找到约 10,000 项符合「Line」的源代码
代码结果 10,000
www.eeworm.com/read/469371/6974290
cc 2818579_wa.cc
#include
#include
using namespace std;
typedef struct
{
int sx;
int sy;
int tx;
int ty;
bool visit;
}Line;
Line line[25000];
int sum=0;
int n,k
www.eeworm.com/read/469371/6974293
cc 2818585_wa.cc
#include
#include
using namespace std;
typedef struct
{
int sx;
int sy;
int tx;
int ty;
bool visit;
}Line;
Line line[25000];
int sum=0;
int n,k
www.eeworm.com/read/469371/6974300
cc 2817473_wa.cc
#include
#include
using namespace std;
typedef struct
{
int lenx;
int leny;
int fx;
int fy;
}Line;
Line line[25000];
int sum=0;
int n,a,b,c,d;
int
www.eeworm.com/read/462821/7195447
c grep2msg.c
/*
EXAMPLE SOURCE CODE FOR GREP FILTER
Grep2Msg.C
Copyright (c) 1990, 1991 Borland International, Inc.
All rights reserved.
Grep2Msg - Message filter from Turbo Grep to Turbo C
www.eeworm.com/read/461713/7221744
c grep2msg.c
/*
EXAMPLE SOURCE CODE FOR GREP FILTER
Grep2Msg.C
Copyright (c) 1990, 1991 Borland International, Inc.
All rights reserved.
Grep2Msg - Message filter from Turbo Grep to Turbo C
www.eeworm.com/read/457902/7315644
c predef.c
// predef.c -- predefined identifiers
#include
void why_me();
int main()
{
printf("The file is %s.\n", __FILE__);
printf("The date is %s.\n", __DATE__);
printf("The time
www.eeworm.com/read/456569/7344831
c grep2msg.c
/*
EXAMPLE SOURCE CODE FOR GREP FILTER
Grep2Msg.C
Copyright (c) 1990, 1991 Borland International, Inc.
All rights reserved.
Grep2Msg - Message filter from Turbo Grep to Turbo C
www.eeworm.com/read/450539/7482473
sh check_whitespace.sh
#!/bin/sh
FILE="$1"
LINE=$(grep -n " $" $FILE)
if [[ $? -eq 0 ]]; then
echo -e "Trailing whitespace found in $FILE on line(s):\n$LINE"
exit 1
fi
exit 0
www.eeworm.com/read/450539/7482477
sh check_comments.sh
#!/bin/sh
FILE="$1"
LINE=$(grep -n "\*\{10\}" $FILE)
if [[ $? -eq 0 ]]; then
echo -e "Bad comment style found in $FILE on line(s):\n$LINE"
exit 1
fi
LINE=$(sed -n -e '1 =' -e '2,$ p' $FILE |
www.eeworm.com/read/449530/7501175
c predef.c
// predef.c -- predefined identifiers
#include
void why_me();
int main()
{
printf("The file is %s.\n", __FILE__);
printf("The date is %s.\n", __DATE__);
printf("The time