[YTU]_2498 (C++类实现最大数的输出)
生活随笔
收集整理的這篇文章主要介紹了
[YTU]_2498 (C++类实现最大数的输出)
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
Description
輸入n個數(shù),找出最大的數(shù)并輸出。
Input
輸入n,并輸入n個數(shù)。
Output
輸出的最大的數(shù),每個輸出結(jié)果占一行。
Sample Input
10 1 2 3 4 5 6 7 8 9 10Sample Output
10#include <iostream> using namespace std; class Q { public:void set_value();int get_Max(); private:int n;int a[100]; }; int main() {Q b1;b1.set_value();cout<<b1.get_Max()<<endl;return 0; } void Q::set_value() {cin>>n;int i;for(i=0;i<n;i++){cin>>a[i];} } int Q::get_Max() {int i, max=a[0],m=0;for(i=1;i<n;i++){if(a[i]>=max)max=a[i];}return max; }總結(jié)
以上是生活随笔為你收集整理的[YTU]_2498 (C++类实现最大数的输出)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [YTU]_2433( C++习题 对象
- 下一篇: [YTU]_2637(编程题:类---矩