题目内容
分析程序或程序段,写出运行结果。#include main(){ int a=28,b;char s[10],*p;p = s;do { b=a%16;if(b<10) *p = b+48;else *p=b+55;p++;a=a/5;}while (a>0);*p='\0';puts(s);}
查看答案
搜索结果不匹配?点我反馈
更多问题