c语言怎么将短整型转化为字符型?
通常有两种方法:函数法、强制转换法。
intiValue;//整型数
charsz[10];//字符串
sprintf(sz,”%d”,iValue);//这句需要头文件
#include<stdio.h>
/*或者*/itoa(iValue,sz,10);//这句需要头文件#include<ctype.h>sprintf类似于printf,printf比sprintf少第一个参数,就是直接在输出界面输出相应的东西,而sprintf就是将你要输出的东西按相应格式存放到第一个参数的字符串中。itoa是直接将整型数转化成字符串
怎样在java中实现整型转字符型?
代码示例:
public class lanqiao1 {
public static void main(String[] args) {
//整型——>字符型
int i=5;
System.out.println((char)(i+’0′));//或者(char)(i+48)
//字符型——>整型
char j =’5′;
System.out.println((int)(j-‘0’));//或者(char)(j-48)
}
}
资料:
1.整型转换成字符型
String num = Integer.toString(int n);
2.Long型转换成字符型
String num = Long.toString(long n);
3.Short型转换成字符型
String num = Short.toString(Short n);
4.Float型转换成字符型
String num = Float.toString(Float n);
C语言编程完成将一个任意正整数转换成相应的字符串.用函数?
#include<stdio.h>#define LEN 30int main(){ void toString(__int64 x,char *p); char str[LEN]; __int64 x; printf(“请输入要转换的整数: “)
; scanf(“%I64d”,&x); toString(x,str)
; printf(“转换成字符串: %sn”,str); return 0;}void toString(__int64 x,char *p){ int i,t,r,l; //初始化 for(i=0;i<LEN;i++) p[i]=’