1樓:匿名使用者
#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++程式,通過鍵盤輸入圓的半徑,輸出圓的周長和麵積
2樓:十忌的光
建構函式以10為半徑
circle(double x) //建構函式double length()
double area()
}main()
3樓:゛冰冰の回憶
(法1)#include
using namespace std;
#define pi 3.1415926
class circle
void get()
void cal()//計算圓的周長和半徑
4樓:
#include
using namespace std;
int main()
那用c 語言編寫一個程式從鍵盤輸入圓的半徑計算該圓的周長面積是多少 ?
5樓:千尋無語
#include
void main()
用c++編寫求圓的面積和周長的程式,半徑r由使用者在鍵盤上隨即輸入
6樓:匿名使用者
#include
using namespace std;
int main()
(在dev c++上編譯通過)
7樓:不知_不問
}static void main(string args)", circle0.area());//呼叫函式計算直徑並顯示console.readline();//防止結束,好方便看結果}}}
求編寫一個c++程式,求圓的周長和麵積
8樓:匿名使用者
先定義一copy個變數r表示半徑,通過周長公式和麵積公式,分別求出周長和麵積,並輸出。
例如://參考**如下:
#include "iostream"
#include "stdio.h"
#define pi 3.1415 //巨集定義圓周率using namespace std;
int main()
/*執行結果:
請輸入圓的半徑: 2
周長c= 12.5660
面積s= 12.5660*/
9樓:匿名使用者
main()
c++程式設計序題:(一)定義一個圓類xy,計算圓的面積和周長(). 要求:1.該類有一個私用的資料成員r,表示半徑; 5
10樓:匿名使用者
【題意分析】
本題是最基礎的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++中執行通過,執行結果截圖如下:
11樓:示申僉
class xy
double getarea()
double r;};
12樓:聖經守恆定律
#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++程式設計,輸入圓的半徑r,要求輸出圓的周長p和麵積area,
13樓:匿名使用者
#define pi 3.14
#include
using namespace std;
int main()
{double r,p,area;
cout<<"請輸入半徑";
cin>>r;
p=pi*r*2;
cout<<"周長:"<
14樓:匿名使用者
#include
using namespace std;
#define pi 3.1415927
void main()
用C語言編寫程式,從鍵盤輸入正整數,輸出這個整數的所
include include 數學bai函式標頭檔案 main getchar getchar 你上機執行一下吧,結果是答對的,有不明白的地方可以再找我 include include 數學複函式標頭檔案 main getchar getchar 你上機執行一下吧,結dao果是對的,有不明白的地方...
C程式中,從鍵盤輸入字串並儲存在字元陣列strl中,把字串str1中下標為偶數的字元儲存
include void main str2 j 0 puts str2 c語言程式設計 編寫程式,從鍵盤輸入一個字串放在字元陣列a中,用選擇法將a中的有效字元按降序排列 include include include void inorder char array,int n int main i...
用c語言來寫!求助求助!從鍵盤輸入a和b兩個值,再輸入或者如果輸入則輸出a
include int main return 0 include int fun int a,int b int main 1.include int main return 0 2.include int fun int a,int b int main int fun int a,int b ...