代码搜索:Line
找到约 10,000 项符合「Line」的源代码
代码结果 10,000
www.eeworm.com/read/481966/6634045
cpp 1099.cpp
/* This Code is Submitted by wywcgs for Problem 1099 on 2005-11-01 at 22:58:20 */
#include
#include
const int MAX = 720;
typedef struct {
int x;
int y;
} Line;
typ
www.eeworm.com/read/481966/6634069
cpp 1450.cpp
/* This Code is Submitted by wywcgs for Problem 1450 on 2005-10-04 at 09:54:43 */
#include
#include
#include
#include
#define MAX 200
typedef struct {
www.eeworm.com/read/478238/6722506
txt readme.txt
Pbookc is a program created in C, to create & manage a Phone
Book. It is accompanied with data fields such as Full Name,
Home, Work & Mobile Number. Entries can be easily modified,
searched & ca
www.eeworm.com/read/410432/11287359
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/263516/11358411
m fm_b.m
function fm_b
% FM_B build admittance matrix B' and B" for fast decoupled
% power flow solution (FDPF)
%
% FM_B
%
%see also FM_Y and Settings
%
%Author: Federico Milano
%Date: 11-
www.eeworm.com/read/258733/11846441
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/342786/11998990
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/342786/11999000
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/229886/14313644
py var.py
# Filename : var.py
i = 5
print i
i = i + 1
print i
s = '''This is a multi-line string.
This is the second line.'''
print s
www.eeworm.com/read/126184/14439696
cpp stack2.cpp
//: C07:Stack2.cpp
// From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison.
// (c) 1995-2004 MindView, Inc. All Rights Reserved.
// See source code use permissions stated in the file 'L