数制基数

hex、oct、dec,分别使数据按十六进制,八进制,十进制输出,在iostream.h头文件中 设置一个数制基数后,它将一直有效,直到遇到下一个数制设置 #include<iostream.h> void main() { int x = 34; cout<<hex<<17<<" "<<x<<" "<<18<<endl; cout<<17<<" "<<oct<<x<<" "<<18<<endl; cout<det<<17<<" "<<x<<" "<<18<<endl; } 输出...
2011-11-02 10:49 | 阅读 619 次 | 评论 0 条
最新评论