2019年9月22日星期日

20190923 HSI FUTURE


預計向下, 如穿26385下望斜線25820
但9月權26000大棍, 可守至結算
另外,由4月中高位30250~5浪下跌可見23500~23200
如3浪2018年頭算,熊3底可見21000,worse case!!

2019年9月20日星期五

BTXE 2019 的啟示!!


大戶畫圖,凡人窮一生鑽研,也只得虛無。

話說BT sir 6月時再現discuss, 出了幅圖, 
1. 黃線 ~28420
2. 紅框 ~28100~28300
3. 黃框 ~27200~27400

今天 20190920, 6月的黃框阻力仍然有效!!!
HSI FUTURE 一周大成交量
20190920 - no significance > ~2000
20190919 - 09:36 26649 ~ 26712 @ vol 2704 

20190918 - no significance > ~2000
20190917 -
a.) 10:26 26915 ~ 26959 @ vol 2185
b.) 13:25 26713 ~ 26755 @ vol 2025
c.) 13:29 26675 bottom @ vol 1823

20190916 10:00 27030~27134 @ vol 3021

20190913 15:28 27336~27385 @ vol 1693



2019年7月1日星期一

編程趣題

2008年5月17日星期六

編程趣題

不計"開blog了"的文章,最多回應便是有c語言的那一篇, 哈哈,
再來說清楚一下吧,

int a[10]; //a is an array of ten integer
int* b[10];//b is an array of ten integer pointer
int (*c)[10];//c is a pointer to an array of the integer
int (*(*d)(char))[]; //What is d ?

先開估︰
d is a pointer to a function which take a char argument and returning a pointer to an array of integer.

長長的答案,應該沒有錯吧?請各位親見下手寫幾行code去証實一下我的答案!
親自發掘答案你將獲益良多!
不過如果反應熱烈,我也會寫幾行code出來說明一下當中拆解的logic。
可是自己的功力尚淺, 只是藉著多點討論,交流,自己也可以進步一下!如果大家有什麼趣題,
觀迎post出來大家一起研究!

好..再來一題....
q2. write a function to calculate the number of bit '0' in the argument
for example,
input =0xFFF0, it should return 4
input =0xFF00, it should return 8

I welcome all kind of language, c/c++, java, asm...etc...