摘要:
//1.ASCII码值 ->相应字符 #include int main() { int asc; scanf("%d",&asc); printf("ASCII码值:%d\n",asc); printf("对应字符:%c\n",asc); } //2.读入浮点数,输出小数形式和指数形式 #include #include int main() { ... 阅读全文
posted @ 2019-05-16 09:27 我不是微光 阅读(540) 评论(0) 推荐(1) 编辑