Test char to int conversion.
已通過所有檢查
The build was successful.

此提交包含在:
2019-04-08 10:32:31 +02:00
父節點 c2b3cc1a2f
當前提交 b320d35cf7
共有 2 個檔案被更改,包括 2 行新增0 行删除

查看文件

@@ -22,6 +22,7 @@ class Program {
private void testNumbers() {
printf("%%b = '%b'\n", $this->n);
printf("%%c = '%c'\n", $this->c);
printf("%%d = '%d'\n", $this->c);
printf("%%d = '%d'\n", $this->n);
printf("%%e = '%e'\n", $this->n);
printf("%%u = '%u'\n", $this->n);

查看文件

@@ -6,6 +6,7 @@
[many monke]
%b = '10100111101010011010101101'
%c = 'A'
%d = '65'
%d = '43951789'
%e = '4.395179e+07'
%u = '43951789'