代码搜索:字符渲染
找到约 10,000 项符合「字符渲染」的源代码
代码结果 10,000
www.eeworm.com/read/212271/15160813
txt 例5.11.txt
//例5.11分析字符串,分别输出字符串的单词,并统计单词个数。
import java.util.*;
public class String_Token
{
public static void main(String args[])
{
String s="we are \n good \t firends";
StringTokenizer analyzer=ne
www.eeworm.com/read/211015/15188697
cpp 6_19.cpp
#include
int main()
{
static char c[10]=
{'I',' ','a','m',' ','a',' ','b','o','y'}; //一维字符数组的声明和初始化
int i;
for(i=0;i
www.eeworm.com/read/210545/15196881
txt 7-15.txt
/* 范例:7-15 */
#include
#include
void main(void)
{
/* 定义参数dest的字符数组destination[25] */
char destination[25];
/* 定义参数scr的字符指针scr1、scr2、scr3 */
char *scr1 = "tiger
www.eeworm.com/read/210545/15196973
txt 4-2.txt
/* 范例:4-2 */
#include
void main()
{
char *str = "null-terminator string";
int count; /* 记录%n前一字符输出位置(即输出字符数) */
int ComputerAddr; /* 计算机用的地址格式 */
/* Integer type */
prin
www.eeworm.com/read/208709/15238964
bas variable.bas
Attribute VB_Name = "Variable"
'保存执行SQL语句的字符串
Public SqlStmt As String
'连接字符串
Public Conn As String
'选择保险的项目和关键字
Public sInsuItems As String
Public sInsuKeys As String
'读取表中列值的变量
Public ColVa
www.eeworm.com/read/206115/15299760
c main6-3.c
/* main6-3.c 检验bo6-3.c的主程序 */
#define CHAR 1 /* 字符型 */
/*#define CHAR 0 /* 整型(二者选一) */
#if CHAR
typedef char TElemType;
TElemType Nil=' '; /* 字符型以空格符为空 */
#else
typedef int TElemT
www.eeworm.com/read/4318/30733
js checkform.js
//函数名:CheckLength
//功能介绍:检查字符串的长度
//参数说明:要检查的字符串
//返回值:长度值
function CheckLength(StrString)
{
var len = 0;
for (var i=0; i
www.eeworm.com/read/4686/38181
c process.c
#define uchar unsigned char
uchar scankb(void); //键盘扫描
extern void signal(void); //P2.0产生2ms方波
extern void RS232(void); //由键盘接收字符并回发
extern void sent (void); //向PC发送字符串
extern void displa