題目:
按以下要求編寫程式。
a; 建立乙個recagle 類,新增width 和height 兩個成員變數。
2) 在rectangle 中新增兩種方法分別計算矩形的周長和面積。
3)程式設計利用red tangle 輸出乙個矩形的周長和面積。
package com.task01;
//矩形類
public class rectangle
public int getperimeter()
//獲得矩形的周長
public int getarea()
//獲得矩形的面積
public rectangle(int width,int height)
public int getwidth()
public void setwidth(int width)
public int getheight()
public void setheight(int height) }
編譯結果
關於編寫程式
當初選擇了文經學院,毅然決然的選擇了電腦科學與技術這個專業,說實話我也不太清楚為什麼,程式設計員大多數都是男生,作為女生的我,也想嘗試一下吧,來上課,第一次接觸程式設計,老師只是叫我們照著書打,就算是這樣,我們還是不能正確執行,粗心大意的毛病在這個時候顯現的無疑,但是卻一點沒有澆滅我對學計算機的熱情...
結伴編寫程式
form1的 using system using system.collections.generic using system.componentmodel using system.data using system.drawing using system.linq using system...
c c C 正式編寫程式
寫類的宣告 包括類裡面的成員和方法的宣告 函式原型 define常數等,但一般來說不寫出具體的實現。在寫標頭檔案時需要注意,在開頭和結尾處必須按照如下樣式加上預編譯語句 如下 你的 寫在這裡 endif 目的 這樣做是為了防止重複編譯,不這樣做就有可能出錯。原始檔 cpp 原始檔主要寫實現標頭檔案中...