tip 1:一个简单的将int型转换成char的方法

int i=1;
char c;
c = i + '0';
原文地址:https://www.cnblogs.com/qiushuixiaozhanshi/p/5720890.html