代码搜索结果
找到约 16,607 项符合
Screen 的代码
main7.cpp
// Section 10.7
// $ CC screen.cpp main7.cpp
/*
Output:
****
****
****
****
@@@@@@
@@@@@@
---
---
---
---
---
*/
#include "screen.h"
int main() {
Scree
main6.cpp
// Section 15.6
// $ CC screen.cpp main6.cpp
/*
Screen Object ( 2, 5 )
Hello
World
*/
#include
using std::cout;
#include
using std::string;
#include "scr
main.prg
clear screen
clear events
*
open database database\salary
*
do form ksjm
*
do setting
*
read events
*
close database
do reset
reset.prg
set sysmenu to default
*
set sysmenu on
*
set talk on
set notify on
set exclusive on
set safety on
modify window screen
*
scrnsave.h
/*
Screen saver library by Anders Norlander
This library is (hopefully) compatible with Microsoft's
screen saver library.
This is public domain software.
*/
#if
jsp语法(1)——html注释.txt
作者:风之彩
email: zhonggb@163.net
日期:2001-6-29 14:27:13
HTML 注释
在客户端显示一个注释.
JSP 语法
例子 1
在客
main4.cpp
// Section 13.4
// $ CC screen.cpp main4.cpp
/*
###
#*#
###
@@@@@###
@@@@@###
@@@@@###
@@@@@###
@@@@@###
########
########
########
*/
#include "screen.h"
i
main3.cpp
// Section 13.3
// $ CC screen.cpp main3.cpp
/*
Screen Object ( 3, 3 )
abc
def
ghi
*/
#include
using std::cout;
#include
using std::string;
#include "
main6.cpp
// Section 13.6
// $ CC screen.cpp main6.cpp
/*
#*#
###
###
#*#
###
#@#
*/
#include "screen.h"
int main() {
Screen myScreen( 3, 3 );
myScreen.home().mo
main8.cpp
// Section 10.8
// $ CC screen.cpp main8.cpp
#include "screen.h"
int main() {
Screen *ps = new Screen(8, 8, '%');
ps->display();
delete ps;
return 0;