代码搜索:visual basic

找到约 10,000 项符合「visual basic」的源代码

代码结果 10,000
www.eeworm.com/read/463079/7188651

java type.java

package lexer; // File Type.java public class Type extends Word { public int width = 0; public Type(String s, int tag, int w) { super(s, tag); width = w; } public static final Type Int = new
www.eeworm.com/read/463079/7188656

java tag.java

package lexer; // File Tag.java public class Tag { public final static int AND = 256, BASIC = 257, BREAK = 258, DO = 259, ELSE = 260, EQ = 261, FALSE = 262, GE = 263, ID = 264, IF
www.eeworm.com/read/457360/7326992

afl accutrack.afl

//------------------------------------------------------------------------------ // // Formula Name: AccuTrack // Author/Uploader: Salil V Gangal // E-mail: salil_gangal@yahoo.com
www.eeworm.com/read/452964/7428632

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/452964/7428666

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/452713/7434628

cpp c13-4.cpp

#include using namespace std; int main() {char *a="BASIC"; for(int i=4;i>=0;i--) cout.put(*(a+i)); cout.put('\n'); return 0; }
www.eeworm.com/read/451029/7473356

jsp app2.jsp

www.eeworm.com/read/450546/7482232

cpp c13-4.cpp

#include using namespace std; int main() {char *a="BASIC"; for(int i=4;i>=0;i--) cout.put(*(a+i)); cout.put('\n'); return 0; }
www.eeworm.com/read/447019/7560466

java type.java

package symbols; import lexer.*; public class Type extends Word { public int width = 0; // width is used for storage allocation public Type(String s, int tag, int w) { super(s, tag);
www.eeworm.com/read/447019/7560544

java tag.java

package lexer; public class Tag { public final static int AND = 256, BASIC = 257, BREAK = 258, DO = 259, ELSE = 260, EQ = 261, FALSE = 262, GE = 263, ID = 264, IF