标签:des style blog io os ar for 2014 div
8 9 1 5 4
1 4 5 8 9
#include <iostream> using namespace std; //定义类类型 class shuzu { //定义私有部分 private : int a[5]; //定义公共部分 public: void input()//输入成员函数 { for(int i=0; i<5; i++) cin >>a[i]; } void pai()//排序成员函数 { int i,j,p; //用个冒泡排序 for(i=0; i<4; i++) for(j=0; j<4-i; j++) if(a[j]>a[j+1]) { p=a[j]; a[j]=a[j+1]; a[j+1]=p; } } void output()//输出成员函数 { cout <<a[0]; for(int i=1; i<5; i++) cout <<" "<<a[i]; } };//老是忘了这个分号 //主函数 int main() { class shuzu s; s.input(); s.pai(); s.output(); return 0; }
标签:des style blog io os ar for 2014 div
原文地址:http://blog.csdn.net/u013634961/article/details/39186229