代码搜索:字符渲染
找到约 10,000 项符合「字符渲染」的源代码
代码结果 10,000
www.eeworm.com/read/269550/11094392
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;
www.eeworm.com/read/269232/11104067
java sample12_7.java
package wyf.jc;
public class Sample12_7
{
public static void main(String[] args)
{
//将字符串转换为基本数据类型boolean
boolean b=Boolean.parseBoolean("FaLse");
System.out.println("将字符串“FaLse”成功转换为bo
www.eeworm.com/read/268481/11136863
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/412544/11193573
prg datetostring.prg
*——DateToString函数
* 将日期型数据转换为字符串
FUNCTION DateToString(dDate)
*——默认返回空字符串
sDate = ""
*——如果参数非空而且为日期型
IF .NOT. EMPTY(dDate) .AND. VARTYPE(dDate) = "D"
*——分别获取其年、月、日字段
nYear = YEAR(dDat
www.eeworm.com/read/266126/11239258
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;
www.eeworm.com/read/249667/12481534
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
www.eeworm.com/read/247588/12639762
pro chapter01hellowho.pro
;
; Chapter01HelloWho
;
PRO Chapter01HelloWho
name=''
read, name, prompt='请输入姓名:' ;按提示信息输入姓名,并保存到变量name中
print,'Hello, ', name, '!' ;依次输出字符串Hello、变量name的值和字符串!
end
www.eeworm.com/read/300587/13904549
cpp 1513 palindrome.cpp
/*
1513 Palindrome
Time Limit : 2000 ms Memory Limit : 32768 K Output Limit : 256 K
GUN C++
*/
//先求出倒置的字符串和原本的字符串的LCS,再是总长度-LCS的长度
#include
#include
using namespace std
www.eeworm.com/read/134069/14010906
txt 4-2.txt
/* 范例:4-2 */
#include
void main()
{
char *str = "null-terminator string";
int count; /* 记录%n前一字符输出位置(即输出字符数) */
int ComputerAddr; /* 计算机用的地址格式 */
/* Integer type */
prin