代码搜索:Linda
找到约 171 项符合「Linda」的源代码
代码结果 171
www.eeworm.com/read/138258/13244310
c linda1.c
#include
void peasoup(int green);
void main()
{
int turn;
turn=13;
peasoup(turn);
}
void peasoup(int green)
{
while(green--)
puts("Blech!");
}
www.eeworm.com/read/138258/13244348
c linda2.c
#include
void peasoup(int green);
void main()
{
int turn;
int *head;
turn=13;
head = &turn;
peasoup(*head);
}
void peasoup(int green)
{
while(gr
www.eeworm.com/read/138258/13244402
c linda3.c
#include
void peasoup(int *green);
void main()
{
int turn;
int *head;
turn=13;
head = &turn;
peasoup(head);
printf("Oh, no, it's %i!\n",*head);
}
www.eeworm.com/read/443594/7630343
pdf computer_vision_-_linda_shapiro.pdf
www.eeworm.com/read/367723/9735564
pdf computer vision - linda shapiro.pdf
www.eeworm.com/read/221024/14766945
edu^~linda^ http:^^www.cs.rice.edu^~linda^
Date: Tue, 26 Nov 1996 00:17:40 GMT
Server: NCSA/1.4.2
Content-type: text/html
Last-modified: Fri, 23 Aug 1996 17:07:27 GMT
Content-length: 2400
Linda Torczon
Linda Torczon
www.eeworm.com/read/221024/14770160
html http:^^cs.mtu.edu^~linda^soft.html
Date: Mon, 25 Nov 1996 23:58:11 GMT
Server: NCSA/1.5.1
Last-modified: Tue, 22 Oct 1996 01:19:58 GMT
Content-type: text/html
Content-length: 2409
Measurement
www.eeworm.com/read/167987/9942589
until
#!/bin/ksh
# Script name: until
# Example 10.104
until who | grep linda
do
sleep 5
done
talk linda@dragonwings