代码搜索:STATION
找到约 2,179 项符合「STATION」的源代码
代码结果 2,179
www.eeworm.com/read/135973/13881528
cpp xpassage.cpp
#include "StdAfx.h"
#include "XPassage.h"
XPassage::XPassage (CString vStation, PointF vPosition, CString vLine1, CString vLine2)
{
station = vStation;
line1 = vLine1;
line2 = vLine2;
p
www.eeworm.com/read/136812/5860756
h entest.h
/*****************************************************************************
static char sccsid[] = "@(#)entest.h 1.1 7/30/92 17:35:49, Copyright Sun Microsystems";
Date: Tue Oct 31 14:58:17
www.eeworm.com/read/123764/6057894
cpp main.cpp
#include
#include "weatherstation.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
WeatherStation station;
app.setMainWidget(&station);
station.sh
www.eeworm.com/read/101082/6243395
1a l35.1a
#print
Write a program which prints the number of vowels
(instances of 'a', 'e', 'i', 'o', and 'u')
in the input.
#once #create Ref
hoboken harrison newark roseville avenue grove street
east orange br
www.eeworm.com/read/101082/6243396
2a l16.2a
#print
Write a program which reads a file with lines of up
to 200 characters and shortens them to 60 characters
by throwing away any characters past the first 60.
Compile and test it; then type "ready
www.eeworm.com/read/101082/6243432
2e l5.2e
#print
(Section 1.5)
Write a program which copies its input to its output
doubling each character (i.e. each input character
is written twice on the output). Compile and test
it. Then type ready. D
www.eeworm.com/read/101082/6243434
3e l5.3e
#print
Let's try something easier.
Write a program which copies its input to
its output. Compile and test it. Then type ready.
#once #create Ref
hoboken harrison newark roseville avenue grove stree
www.eeworm.com/read/101082/6243447
2b l16.2b
#print
Write a program which copies all lines containng
the letter 'p' from its input to its output.
Compile and test it; then type "ready".
#once #create Ref
mountain station south orange maplewood m
www.eeworm.com/read/485607/6554727
cpp main.cpp
#include
#include "weatherstation.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
WeatherStation station;
station.show();
return app.exec();
}
www.eeworm.com/read/484696/6572694
txt 公交换乘算法.txt
偶5月份写的公交换乘算法:
公交换乘一站算法busTransfer
/**
* 公交换乘一站的算法思想:
* (注意:车次信息、站点信息、公交信息是等价的都是以HashMap的形式存储信息)
* 1.从数据库中获得所有公交信息存储到ArrayList,每个具体信息的元数据有三个:
* 公交车次、公交站点、该公交站点距离该公交车次的始发站点的站数,具体信息用HashMap保存 ...