1樓:匿名使用者
先定義一copy個變數r表示半徑,通過周長公式和麵積公式,分別求出周長和麵積,並輸出。
例如://參考**如下:
#include "iostream"
#include "stdio.h"
#define pi 3.1415 //巨集定義圓周率using namespace std;
int main()
/*執行結果:
請輸入圓的半徑: 2
周長c= 12.5660
面積s= 12.5660*/
2樓:匿名使用者
main()
c++程式設計序題:(一)定義一個圓類xy,計算圓的面積和周長(). 要求:1.該類有一個私用的資料成員r,表示半徑; 5
3樓:匿名使用者
【題意分析】
本題是最基礎的c++類使用習題,主要就是練習類的定義,私有成員,外部成員,成員變數,成員函式的使用等。下面這段**每行都有註釋,除了實現題中的功能,還有一些基礎的示例對理解c++的類很有幫助,具體**如下:
【程式**】
#include //控制檯操作標頭檔案
class xy //定義一個類
//無參建構函式
xy(double n) //有參建構函式
int set(double n) //設定半徑的成員函式
double get() //獲得半徑的成員函式
double grith() //求周長的成員函式
//周長等於2∏r
double area() //求面積的成員函式
//面積等於∏r的平方
}; //類定義結束
int main() //主函式
//結束程式
【執行結果】
以上程式在dev c++中執行通過,執行結果截圖如下:
4樓:示申僉
class xy
double getarea()
double r;};
5樓:聖經守恆定律
#include
using namespace std;
#define _pi 3.14
class xy;
double perimeter(const xy& xy);
class xy
double area()
friend double perimeter(const xy& xy);
};int main(void)
double perimeter(const xy& xy)
c++程式設計求助編寫一個基於物件的程式:輸入半徑,計算圓的周長和麵積並輸出
6樓:匿名使用者
#include"iostream"
#define pi 3.1415962
using namespace std;
class circle
circle(double x) //建構函式double length()
double area()
}main()
7樓:匿名使用者
#include
#define pi 3.14;
class yuan
;float yuan::length(float r)float yuan::area(floay r)void main()
8樓:匿名使用者
周長:(保留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.
9樓:小蝸牛冒險
#include
using namespace std;
class circle
void length()
void area()
private:double a;};
int main()
編寫c++程式,通過鍵盤輸入圓的半徑,輸出圓的周長和麵積
10樓:十忌的光
建構函式以10為半徑
circle(double x) //建構函式double length()
double area()
}main()
11樓:゛冰冰の回憶
(法1)#include
using namespace std;
#define pi 3.1415926
class circle
void get()
void cal()//計算圓的周長和半徑
12樓:
#include
using namespace std;
int main()
如和用c++來設計一個程式,從鍵盤輸入一個圓的半徑,來求圓的面積和周長
13樓:匿名使用者
#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<
計算各圓的周長和麵積,圓的周長和麵積公式
圖1 周長 d 3.1415926 10 31.42 cm 意思是釐米 面積 r 3.1415926 5 78.54 cm 平方釐 版米 圖權2 周長 2 r 2 3.1415926 3 18.85cm 釐米 面積 r 3.1415926 3 28.27cm 平方釐米 甜蜜暴擊是華策集團 金溪影視 ...
圓的周長和麵積公式,圓的周長和麵積的公式是什麼
c d 2 r 圓的周長 直徑 圓周率。s rr 圓的面積 半徑 半徑 圓周率。圓的周長和麵積的公式是什麼 圓周長c 2 r 圓面積s r的平方。周長公式是,乘以直徑面積公式是乘以r的平方。圓的周長 直徑x兀或半徑x2 圓的面積 半徑的平方x兀。圓的周長等於派d,c d,圓的面積等於派r方s r 圓...
求編寫C語言程式,求編寫一個C語言程式
include stdafx.h vc 6.0加上這一行.include stdio.h void main void i int tmp printf 請輸入前17位號碼 scanf s a for tmp i 0 i 17 i tmp a i 0 b i tmp 11 tmp 12 tmp 11...