代码搜索:字符渲染
找到约 10,000 项符合「字符渲染」的源代码
代码结果 10,000
www.eeworm.com/read/411835/11224716
c uart.c
#include "includes.h"
void SendChar(char c)//发送一个字符
{
while(!(UCSR0A & (1
www.eeworm.com/read/335350/12538684
html ipverify.html
/* isNumeric - 判断一个字符串中的内容是否全是数字字符,如果全是返回true,
否则,返回false*/
function isNumeric(str)
{
if (str.length == 0)
{
return false;
}
for(var i=0; i
www.eeworm.com/read/334827/12571257
cpp 2.cpp
#include
#include
#include
template
class String
{
public:
String(); // 构造一个空的字符串
String(T *str); //用C++串构造字符串
String(String &ob); //用串对象构造字
www.eeworm.com/read/334088/12642304
m linkexl.m
function linkexl
[filename,pathname]=uigetfile(('*.xls'),'choose a file');
str=[pathname filename];
[A,B]=xlsread(str); % matlab自动把字符串和数据放在两个矩阵里。A是数据,B为字符串
x=A(:,5);
y=A(:,8);
subplot(2,1,1)
www.eeworm.com/read/204479/15337807
c seqstring.c
/*字符串的顺序表示*/
#include
#include
#define MAXNUM 80 /* 串允许的最大字符个数。根据需要定义 */
struct SeqString { /* 顺序串的类型 */
int n; /*串的长度n
www.eeworm.com/read/203779/15351542
txt bianyiyuancifafenxiqi.txt
#include #include #include #define MAX 50
void main()
{
FILE *in,*out;/*存放输入字符串和输出单词串的文件*/
char arr[MAX];/*arr数组存放单词符号*/
char currentchar;/*currentchar存放当前输入字符*/
in
www.eeworm.com/read/112371/15489196
asp reg_user.asp
·新会员登记
//函数名:fucCheckLength
//功能介绍:检查字符串的长度
//参数说明:要检查的字符串
//返回值:长度值
function
www.eeworm.com/read/431296/8690632
c 3.31.c
◆3.31③ 假设称正读和反读都相同的字符序列为
"回文",例如,'abba'和'abcba'是回文,'abcde'
和'ababab'则不是回文。试写一个算法判别读入的
一个以'@'为结束符的字符序列是否是"回文"。
实现下列函数:
Status Palindrome(char *word);
/* 利用栈和队列判定字符序列word是否是回文 */
可使用栈Stack和
www.eeworm.com/read/282193/9114715
txt 目录.txt
目 录
译者序
前言
第一部分 程序员必读
第1章 对程序错误的处理 1
1.1 定义自己的错误代码 4
1.2 ErrorShow示例应用程序 5
第2章 Unicode 11
2.1 字符集 11
2.1.1 单字节与双字节字符集 11
2.1.2 Unicode:宽字节字符集 12
2.2 为什么使用Unicode 13