急求簡單c 程式設計題答案,急 !!求簡單C 程式設計題答案

2021-05-05 15:25:25 字數 3602 閱讀 5749

1樓:匿名使用者

class shape

~shape(){}

virtual float getarea() = 0; //定義純虛擬函式

virtual float getperim() = 0;

}class rectangle : public shape~rectangle(){}

float getarea()

float getperim()

}#define pi 3.1415926class circle : public shape~circle(){}

float getarea()

float getperim()}

2樓:匿名使用者

第一題#include

class shape

;class circle:public shapedouble getperim(float r)};class retangle:public shapefloat getperim(float w,float h)};void main()

retangle retangle;

circle circle;

if(selection==1)

while(option=='y'||option=='y');

}第二題

#include

class boat

;class car

;float totalweight(float x,float y)

void main()

#endif

#ifndef swap_h

#define swap_h

template

t myswap(t x,t y)

#endif

cpp檔案

#include "er.h"

#include

void main()

20分跪求c++程式設計題 的答案 ~~急

一些簡單的c++程式設計題,求高人解答!急急急!

3樓:匿名使用者

//1.有一個一維陣列,內放10個學生成績,輸出各分數段人數、平均分、最高分和最低分,保留小數點後一位。

#include

using namespace std;

int main(void)

;float min=100, max=0, sum = 0, s = 0;

int failed = 0, passed = 0, ok = 0, good = 0, excellence = 0, i = 0;

for(i = 0; i< 10; i++)

if(s < 70)

if(s < 80)

if(s < 90)

excellence++;

}//next

cout.setf(ios::fixed);

cout.precision(1);

cout << "本次考試最高分" << max << ",最低分" << min <<",平均分" << sum/10 << endl;

cout << "優" << excellence <<"人,良" << good <<"人,中" << ok << "人,及格" << passed << "人,不及格" << failed << "人" << endl;

return 0;

}/*執行結果:

本次考試最高分95.0,最低分55.5,平均分78.8

優2人,良3人,中3人,及格1人,不及格1人

*///2求這樣一個三位數,該三位數等於其每位數字的階乘之和。

#include

using namespace std;

//求n的階乘n!

int grade(int n)

//end grade

int main(void)

//next

return 0;

} //執行結果:145

//3.求已知二個函式的的定積分(用指向函式的指標)

#include

#include

using namespace std;

//定積分,function函式指標,from積分起點,to積分終點, step積分步長

double int (double (*function)(double), double from, double to, double step)

//next i

return sum;

}int main(void)

//執行結果,sin和cos都從0到π/2區間積分,都得到1(近似值)

c++考試,急求程式設計題答案,要完整程式!

4樓:深海_藍魚

class  vehicle

class  bicycle : public vehiclebool bicycle::setmaxspeed(int speed)

int main()

順序為:先父類構造,再子類構造;  先子專類析屬構,再父類析構

5樓:最強勁的人

#pragma once

#include

using namespace std;

class vehicle

;#include "vehicle.h"

vehicle::vehicle(void)vehicle::~vehicle(void)void vehicle::run()

void vehicle::stop()

//自行車類

#pragma once

#include "vehicle.h"

class bicycle :

public vehicle

;#include "bicycle.h"

bicycle::bicycle(void)bicycle::~bicycle(void)void bicycle::

setmaxspeed(int n)#include "bicycle.h"

bicycle cbicycle;

void main()

6樓:匿名使用者

//c++ code

#include

using namespace std;

class vehicle

virtual ~vehicle ()

void run () {}

void stop () {}

protected:

int    m_maxspeed;

int    m_weight;

};class bicycle : public vehiclevirtual ~bicycle ()

void setmaxspeed (int n);

private:

int m_height;

};void bicycle::setmaxspeed (int n)

int main (int argc, char** argv)

c 問題。急求答案,C 問題。急求答案!

vec是父類的指標。當我們使用關鍵字new在堆上動態建立一個物件時,它實際上做了三件事 獲得一塊記憶體空間 呼叫建構函式 返回正確的指標。當然,如果我們建立的是簡單型別的變數,那麼第二步會被省略。假如我們定義瞭如下一個類a class a void say 呼叫new a pa new a 3 那麼...

c程式設計問題,急求!C 程式設計問題

1.private double getvalue double x void main 2.private int getvalue int n return sum void main public int gety int x return y 1.double x,y x convert.t...

高分求解下面這套簡單c語言題的答案,急

d.28 d.a 0 0 d.strp mba 共用型資料中的成員可以是結構型,但不可以是共用型b.算術運算 關係運算 賦值運算 c.min d.ffff d.1,1 d.p1 n d.指向整型函式的指標變數 哥們,你想把人給累死呀!這題目一個也不會?不想做吧!剛學c,只會 幾道,悲哀啊 ddccb...