代码搜索:字符渲染
找到约 10,000 项符合「字符渲染」的源代码
代码结果 10,000
www.eeworm.com/read/301926/13845629
c gg.c
#include #include #include #define MAX 50void main()
{
FILE *in,*out;/*存放输入字符串和输出单词串的文件*/
char arr[MAX];/*arr数组存放单词符号*/
char currentchar;/*currentchar存放当前输入字符*/
int
www.eeworm.com/read/134247/5893382
java util.java
package hospital.db;
import java.io.*;
import java.util.*;
/**
* 本类定义了一些辅助方法
*
* 作者:Fido Dido
*/
public abstract class Util{
/**
* 将iso-8859-1字符串转换成gbk字符串
*
* 参数:
* str
www.eeworm.com/read/117415/6103227
ini keywords.ini
//关键字或保留字说明:
[KEYWORDS]
if else while
int char
return void
//专用符号:
[SYMBOLS]
+ - * / < >= == != = ; , ( )
//默认的一些串表示:
[DEFAULTS]
//有效变量:以字母开头,其余字符可以是字母或数字的字符串
ID
//数字串:可
www.eeworm.com/read/440959/6283666
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/315848/6289647
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/382398/6321351
cpp main6-3.cpp
// main6-3.cpp 检验bo6-3.cpp的主程序
#define CHAR 1 // 字符型
//#define CHAR 0 // 整型(二者选一)
#if CHAR
typedef char TElemType;
TElemType Nil=' '; // 字符型以空格符为空
#else
typedef int TElemType;