用c 編寫求圓的面積和周長的程式,半徑r由使用者在鍵盤上隨即

時間 2021-05-14 08:20:00

1樓:匿名使用者

#include

using namespace std;

int main()

(在dev c++上編譯通過)

2樓:不知_不問

}static void main(string args)", circle0.area());//呼叫函式計算直徑並顯示console.readline();//防止結束,好方便看結果}}}

用c++編寫程式:求圓形circle的周長和麵積,請編寫一個基於物件的程式。資料成員包括r(半徑)

3樓:

#include

#define pi 3.141593

class circle

~circle()

void setradius(double radius)double getradius()

double perimeter()

double area()

private:

double m_radius;

};int main()

如和用c++來設計一個程式,從鍵盤輸入一個圓的半徑,來求圓的面積和周長

4樓:匿名使用者

#include

using namespace std;

int main()

{#define pi 3.14159265double r, c, s;

cin>>r;

c=2*pi*r;

s=pi*r*r;

cout << c<< endl << s<

c++程式設計求助編寫一個基於物件的程式:輸入半徑,計算圓的周長和麵積並輸出

5樓:匿名使用者

#include"iostream"

#define pi 3.1415962

using namespace std;

class circle

circle(double x) //建構函式double length()

double area()

}main()

6樓:匿名使用者

#include

#define pi 3.14;

class yuan

;float yuan::length(float r)float yuan::area(floay r)void main()

7樓:匿名使用者

周長:(保留2位小數)

varr,l:real;

begin

readln(r);

l:=2*3.14*r;

writeln(l:0:2);

end面積:(保留2位小數)

varr,s:real;

begin

readln(r);

s:=3.14*r*r;

writeln(s:0:2);

end.

8樓:小蝸牛冒險

#include

using namespace std;

class circle

void length()

void area()

private:double a;};

int main()

用c++語言寫一個程式,輸入一個圓的半徑,分別求其面積和周長

9樓:隔江千萬裡

#...

int r,b,d

sin<<"輸入圓的半徑「<

b=π*r^2;

d=π*2*r;

cout<<"面積為「<

cout<<」周長wei"<

10樓:匿名使用者

#include

using namespace std;

const double pi = 3.141592654;

int main()

11樓:匿名使用者

#include

using namespace std;

#define pi 3.14

int main()

用c++輸入圓的半徑計算圓的周長和麵積。

12樓:星語

//circle不是靜態類,不能直接訪問,需要例項化為物件//cout<<"圓的半徑為"

#include

using namespace std;

const float pi=3.14;

class circle

void input();

float area();

float length();

private:

float r;

};void circle::input()float circle::length()float circle::area()

int main ()

{circle  circ;

cout<<"請輸入圓的半徑"<

13樓:匿名使用者

修改如下:

#include

using namespace std;

const float pi=3.14;

class circle

void input();

float area();

float length();

private:

float r;

};void circle::input()float circle::length()float circle::area()

int main ()

14樓:山河不悟

你主函式沒有呼叫input,那半徑到底是多少也不知道呀

編寫一個方法求圓的面積,接收r半徑作為引數,用c++的控制檯應用程式

15樓:匿名使用者

#include

#include "process.h"

using namespace std;

void main(int argc,char * argv){int r(0);

cout<<"請輸入圓的半徑:"<>r;

cout<<"半徑為"<

用c++編寫一個函式,求一個圓的面積,以半徑為函式引數,返回值為函式的面積,用main函式呼叫

16樓:匿名使用者

#include

using namespace std;

double area(double r)int main()

{double radius;

cout<<"請輸入圓的半徑:版"<>radius;

cout<<"該圓權的面積為:"<

c++程式設計,輸入圓的半徑r,要求輸出圓的周長p和麵積area,

17樓:匿名使用者

#define pi 3.14

#include

using namespace std;

int main()

{double r,p,area;

cout<<"請輸入半徑";

cin>>r;

p=pi*r*2;

cout<<"周長:"<

18樓:匿名使用者

#include

using namespace std;

#define pi 3.1415927

void main()

用c編寫求n的階乘的函式,用C 編寫一個求n的階乘的函式

class program public int factorial int num int result if num 1 return 1 else result factorial num 1 num return result class test static void main stri...

C語言程式設計,編寫程式,求10 用C語言

第0題 include define maxlen 70 main int i,temp,flag 0 printf 請輸入第一個字串 n scanf s s1 printf 請輸入第二個字串 n scanf s s2 i strlen s1 temp strlen s2 if i main x i...

急求用C或C 編寫的學生成績管理程式

我自己做的,你看行不行 模擬學生資訊查詢系統 define list init size 10 確定分配空間大小 define list more 1o 分配增量 include include include include getch include typedef struct student...