1 #include<iostream> 2 #include<cmath> 3 using namespace std; 4 5 class Point 6 { 7 private: 8 int x; 9 int y; 10 int z; 11 public: 12 void Input(); 13 void Output(); 14 int RuturnX(); 15 int RuturnY(); 16 int RuturnZ(); 17 }; 18 void Point::Input() 19 { 20 cout << "请输入X,Y,Z的值" << endl; 21 cin >> x >> y >> z; 22 }
1 #include<iostream> 2 using namespace std; 3 class Array_max 4 { 5 6 int array[10]; 7 int max; 8 public: 9 void set_value(); 10 void max_value(); 11 void show_value(); 12 13 }; 14 void Array_max::set_value() 15 { 16 int i; 17 for(i=0;i<10;i++) 18 { 19 cin>>array[i]; 20 } 21 } 22 void Array_max::max_value() 23 { 24 int i; 25 max=array[0]; 26 for(i=0;i<10;i++) 27 {if(array[i]>max) 28 max=array[i];} 29 30 } 31 void Array_max::show_value() 32 { 33 cout<<"max="<<max; 34 } 35 36 int main() 37 { 38 Array_max arrmax; 39 arrmax.set_value(); 40 arrmax.max_value(); 41 arrmax.show_value(); 42 return 0; 43 44 }
标签:5.4,int,max,void,value,array,Array From: https://www.cnblogs.com/lijianlongCode13/p/17372693.html