1樓:
幫別人寫的
#include
using namespace std;
class tv
//傳入頻道和音量的建構函式
tv(int x_channel,int x_volume)//傳入狀態、頻道和音量的建構函式
tv(bool x_state,int x_channel,int x_volume)
~tv();
//獲取電視機狀態、頻道和音量
bool getstate()
int getchannel()
int getvolume()
//開機
void poweron()
else
//關機
void poweroff()
else state=false;
}//頻道加減
void upchannel()
if (channel==499) channel=0;
else channel++;
printf("當前頻道為:%d\n",channel);
}void downchannel()
if(channel==0) channel=499;
else channel--;
printf("當前頻道為:%d\n",channel);
}//音量加減
void upvolume()
if(volume==100) return;
else volume++;
printf("當前音量為:%d\n",volume);
}void downvolume()
if(volume==0) return;
else volume--;
printf("當前音量為:%d\n",volume);}}void main()}}
2樓:大拓門店運營研究社
//關於類中操作符過載的,挺不錯的。
#include
#include
#include
#include
using namespace std;
//class for amounts of money in u.s. currency
class money
;int digit_to_int(char c)
//uses cstdlib and iostream:
istream& operator>>(istream& ins,money& amount)
cents= digit_to_int(digit1)*10 + digit_to_int(digit2);
amount.all_cents=dollars*100+cents;
if(negative)
amount.all_cents=-amount.all_cents;
return ins;
} ostream& operator<<(ostream& outs,const money& amount)
求大佬幫編寫C語言程式,求大佬幫編寫一個C語言程式
瘋狂小鳥 include main else 當a 0 a 1 時,說明不同的一定在a 1 之後,因此用a 1 之 後的值逐個與a 0 或a 1 比較,直接就比較出不同的了。當a 0 a 1 時,說明不同的一定在a 0 和a 1 其中一個,因 此用a 0 在與a 2 比較,如果a 0 a 2 說明a...
求cad程式,求一個cad程式,
我所用的最少的精簡版的cad2004也有100m,用的cad2008和2010都是幾個g。不曉得如何發。2004acad迷你版,壓縮後54mb 無法通過信箱傳遞。autocad 2004 迷你版 nanrenganba xunchi聯合傾情打造 本版本不需要原始版本,安裝即可使用,支援 window...
求30行以上簡單的C語言程式,要每行都有註釋,明天用
c語言程式設計 第7章結構體與共用體 插入的節點可以在表頭 表中或表尾。假定我們按照以學號為順序建立連結串列,則插入的 節點依次與表中節點相比較,找到插入位置。由於插入的節點可能在連結串列的頭,會對連結串列的 頭指標造成修改,所以定義插入節點的函式的返回值定義為返回結構體型別的指標。節點的 插入函式...