已不再支援此瀏覽器。
請升級至 Microsoft Edge,以利用最新功能、安全性更新和技術支援。
基數 'number' 的不合法數字 'character'
指定的字元不是基底的有效數位(例如八進位或十六進位)。
下列範例會產生 C2041:
// C2041.cpp int i = 081; // C2041 8 is not a base 8 digit
可能的解決方式:
// C2041b.cpp // compile with: /c int j = 071;
此頁面對您有幫助嗎?