1樓:小丁創業
程式**如下:
#include
#include
using namespace std;
class clock;void clock::displaytime() int main()
clock a(23,59,55);
a.displaytime();
return 0;
擴充套件資料:定義一個日期類,包括年、月、日三個成員變數,顯示日期的方法如下:
publicclassdemo{
publicstaticvoidmain(stringargs){datedate1=newdate(1994,5,22);
date1.showinfo();
datedate2=newdate();
date2.year=1995;
date2.month=6;
date2.day=29;
date2.showinfo();
//日期類:
publicclassdate{
intyear;
intmonth;
intday;
//構造方法
publicdate(intyear,intmonth,intday){
this.year=year;
this.month=month;
this.day=day;
publicdate(){
publicvoidshowinfo(){system.out.println(year+"年"+month+"月"+day+"日");
2樓:匿名使用者
#include
#include
using namespace std;
class clock
void displaytime();
private:
short h;
short m;
short s;
};void clock::displaytime()} int main()
求一個純硬體數位電子時鐘的電路圖 30
3樓:匿名使用者
上傳了原始檔個自己慢慢試一下,好早搞的,可能會有丟丟問題,自己慢慢查下,別什麼都指望別人,這樣不好!
求教51微控制器程式LCD電子時鐘)
看要一下你是個什麼開發板,上面有沒有時鐘ic了,沒有專用的時鐘ic,時間做出來有可能不是很準確 給我個郵箱 給你程式.我用的是時鐘ds1302 求一個為 51 微控制器編寫的 lcd 1602電子時鐘的設計 我在學習板上調的,沒有流程圖啊。可見 一個51微控制器電子鐘程式,求詳細的解釋啊急急急!你這...
編寫C語言程式,編寫一個C語言程式
include int main printf d n sum return 0 付費內容限時免費檢視 回答第一步 先在linux下運用 vi char.c建立一個.c的文字。在char.c中編寫你要實現的功能。我這裡用一個最簡單的例子做說明。include include main else 保成...
C 編寫小程式(思路即可),C 編寫一個小程式(思路即可)
求出該整數的各個位 比如 125,百位為1,十位為2,個位為5 依次放入int型陣列,x 另外定義一個9個大小的int陣列a,初始化為0然後迴圈,每個迴圈裡switch x i case 1 a 0 省略 第一步 先判斷輸入的整數是多少位的,比如輸入的是 123 就是三位的 第二步 將這個數除以10...