代码搜索:visual basic
找到约 10,000 项符合「visual basic」的源代码
代码结果 10,000
www.eeworm.com/read/428174/8885659
txt readme.txt
This directory contains the Wizzy1 server and WizzyClient used as a basic
example of the use of the kit on the Prel website at http://www.prel.co.uk
www.eeworm.com/read/283598/9002778
txt 感悟visualbasic(1).txt
感悟VisualBasic(1)
--------------------------------------------------------------------------------
张鸿 时间:2003-11-28 10:02:08
虽然.NET已经触手可及,然而回顾成熟的Visual Basic以及倾听VB程序员积累多年的编程思想应该还能给我们
www.eeworm.com/read/283278/9031485
lin wave.lin
E:\制作和~1\总线开发\试验程序\BASIC_~1\COUNTE~1\COUNTER_T1.OBJ
TO E:\制作和~1\总线开发\试验程序\BASIC_~1\COUNTE~1\COUNTER_T1
RS(256)
www.eeworm.com/read/184790/9075799
txt 例13.4.txt
例13.4 有一个字符串″BASIC″,要求把它们按相反的顺序输出。
#include
using namespace std;
int main( )
{char *a=″BASIC″;//字符指针指向′B′
for(int i=4;i>=0;i--)
cout.put(*(a+i)); //从最后一个字符开始输出
c
www.eeworm.com/read/184790/9075854
txt 例6.16.txt
例6.16 指向字符型数据的指针变量。
#include
using namespace std;
int main( )
{ char **p; //定义指向字符指针数据的指针变量p
char *name[]={″BASIC″,″FORTRAN″,″C++″,″Pascal″,″COBOL″};
p=name+2;
www.eeworm.com/read/379267/9203349
h unit.h
#include
class basic
{
public:
char name[30];
char phone[15];
void showlist(fstream);
};
class normal:public basic
{
public:
char qq[10];
int sign;
normal();
v
www.eeworm.com/read/379196/9204949
txt 例13.4.txt
例13.4 有一个字符串″BASIC″,要求把它们按相反的顺序输出。
#include
using namespace std;
int main( )
{char *a=″BASIC″;//字符指针指向′B′
for(int i=4;i>=0;i--)
cout.put(*(a+i)); //从最后一个字符开始输出
c
www.eeworm.com/read/379196/9205001
txt 例6.16.txt
例6.16 指向字符型数据的指针变量。
#include
using namespace std;
int main( )
{ char **p; //定义指向字符指针数据的指针变量p
char *name[]={″BASIC″,″FORTRAN″,″C++″,″Pascal″,″COBOL″};
p=name+2;