代码搜索:字符渲染
找到约 10,000 项符合「字符渲染」的源代码
代码结果 10,000
www.eeworm.com/read/157368/5606616
java tounicode.java
/** ToUnicode.java */
package caiwu;
import java.io.*;
/**
* 字符串转换成Unicode码的类
* @author trowa
* @date 2003-03-05
*/
public class ToUnicode {
/**
* 把字符串转换成Unicode码
* @param strText 待转换
www.eeworm.com/read/174065/6783384
c ch9_8.c
/*CH9_8*/
/*使用字符指针变量表示和引用字符串*/
#include
void main()
{
char *string="I love Beijing.";
int k=0;
while(string[k]!= '\0')
{
printf("%c", string[k]);
k+
www.eeworm.com/read/174065/6783431
c ch8_7.c
/*CH8_7*/
/*从键盘读入一个字符串,然后输出该字符串*/
#include
void main()
{
char ch[15];
printf("input string:\n");
scanf("%s",ch);
printf("%s\n",ch);
}/*main()*/
www.eeworm.com/read/394438/8224627
c xinxi.c
#include "stdio.h" /*I/O函数*/
#include "stdlib.h" /*其它说明*/
#include "string.h" /*字符串函数*/
#include "conio.h" /*屏幕操作函数*/
#include "mem.h" /*内存操作函数*/
#include "ctype.h" /*字符操作函数*/
#incl
www.eeworm.com/read/392290/8352434
txt xueshengchengjiguanlixitong.txt
#include "stdio.h" /*I/O函数*/
#include "stdlib.h" /*其它说明*/
#include "string.h" /*字符串函数*/
#include "conio.h" /*屏幕操作函数*/
#include "mem.h" /*内存操作函数*/
#include "ctype.h" /*字符操作函数*/
#incl
www.eeworm.com/read/174062/9610016
c ch9_8.c
/*CH9_8*/
/*使用字符指针变量表示和引用字符串*/
#include
void main()
{
char *string="I love Beijing.";
int k=0;
while(string[k]!= '\0')
{
printf("%c", string[k]);
k+
www.eeworm.com/read/174062/9610072
c ch8_7.c
/*CH8_7*/
/*从键盘读入一个字符串,然后输出该字符串*/
#include
void main()
{
char ch[15];
printf("input string:\n");
scanf("%s",ch);
printf("%s\n",ch);
}/*main()*/
www.eeworm.com/read/368349/9700519
c lcd3.c
//*******************************************************
//该程序实现用液晶显示器LCD显示已定义的字符串中的某一字符
//程序启发:用查表法把数据送到LCD显示
//作者:李锡坚
//完成时间:2007.07.24.21:43
//************************************************