代码搜索结果
找到约 16,607 项符合
Screen 的代码
p2.c
#include
#include
#include
#include
#include
int main( int argc , char ** argv )
{
int i ; /* loop index */
int scr_sem; /* id of screen
ping.c
#include
#include
#include
#include
#include
int main(int argc , char ** argv)
{
int i,j ; /* loop index */
int scr_sem; /* id of screen
pong.c
#include
#include
#include
#include
#include
int main(int argc , char ** argv)
{
int i,j ; /* loop index */
int scr_sem; /* id of screen
screen.c
/*
* GeekOS text screen output
* Copyright (c) 2001,2003,2004 David H. Hovemeyer
* $Revision: 1.24 $
*
* This is free software. You are permitted to use,
* redistribute, an
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;
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