搜索资源列表
datastruct
- 通过反序输出整数,实现了一个整数的反序输出。很好的实现了反序功能。-#include< iostream> using namespace std int main(){int a,b=0 cout< < please input the integer: < < endl cin> > a while(a){b=b*10+a 10 a/=10 }cout< < the end is < < b< < endl return 0 }