有附歌詞檔可供下載或列印。
【老鵝金曲改編】 憨智回頭 (原曲:茄子蛋/浪子回頭)feat.郭子 Guo Zi
改編:老天鵝娛樂
唱聲:郭子 Guo Zi
原作:茄子蛋
原曲:浪子回頭
貓一隻一隻一隻的換 票一張一張一張咧流
無人要支持我 我頭腦無好賣嘎挖衝康
民調一趴一趴一趴咧落 貓一隻一隻一隻咧嚎
我若是 選未條 帶TOGI逗陣
憨子回頭
同步處理:任何一個裝置只要登入同一個Google帳戶,並連接網路,就可以即時顯示所有的操作變更。
設定
,點選帳戶
,於個人
列表下點選新增帳戶
。之後照以下順序即可完成。姓氏
。名字
。繼續
。CHAWTeam Jul 7, 2019
下一步
或→
,切換到下一個頁面。「Wi-Fi」僅是個名詞,無中文名稱,代表著「無線網路」的意思。
跳過
或→
,切換到下一個頁面#include <stdio.h>
static long dpm[]
= {0, 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334};
int main()
{
unsigned long Y, M, D, h, m, s;
puts("YYYY MM DD hh:mm:ss");
scanf("%lu %lu %lu %lu:%lu:%lu", &Y, &M, &D, &h, &m, &s);
if (M > 12 || Y < 1970 || h > 23 || m > 59 || s > 59) {
return 1;
}
--D;
D += dpm[M];
if ((Y & 3) == 0 && ((Y % 100) != 0 || (Y % 400) == 0)) {
if (M > 2) {
D += 1;
}
}
D += (Y - 1970) * 365;
if (Y > 1972) {
D += (Y - 1972) >> 2;
D += (((Y - 1972) & 3) && 1);
if (Y > 2000) {
D -= (Y - 2000) / 100;
D -= ((Y - 2000) % 100) && 1;
D += (Y - 2000) / 400;
D += ((Y - 2000) % 400) && 1;
}
}
printf("%ld\n", D * 86400 + h * 3600 + m * 60 + s);
return 0;
}
#include <iostream> #include <cstdlib>
using namespace std;
int main ()
{
float a;
char b;
cout << "請輸入溫度(僅需輸入數字與英文字母。範例:32C或50f):";
cin >> a >> b;
if (b == 'c' || 'C')
{
cout << a*(9.0/5)+32 << 'F' << endl;
}
else if (b == 'f' || 'F')
{
cout << (a-32)*(5.0/9) << 'C' << endl;
}
else
cout << "請輸入正確的內容,請重新運行本程式。";
system ("pause");
return 0;
}
#include <stdio.h>
#include <ctype.h>
int main(void)
{
double t; char c;
scanf("%lf %c", &t, &c);
c = toupper(c);
if (c != 'C' && c != 'F') {
puts("Please Check Your Data");
}
printf("RESULT = %f\n", c == 'C' ? (1.8 * t + 32): (5.0/9.0)*(t-32));
return 0;
}
CHAWTeam Jul 5, 2019
「系統」與「作業系統」的差別?
系統:同類事物按照一定的秩序或關係,而組成的整體。
作業系統:作業系統專指提供電腦基本運作的程式。