12 lines
217 B
Text
12 lines
217 B
Text
include c:\cxpl\codes;
|
|
int N; real R;
|
|
[Text(8, "123_456");
|
|
N:= IntIn(8);
|
|
IntOut(0, N); CrLf(0);
|
|
Text(8, "ABcd12");
|
|
N:= HexIn(8);
|
|
HexOut(0, N); CrLf(0);
|
|
Text(8, "-3.14159e3");
|
|
R:= RlIn(8);
|
|
RlOut(0, R); CrLf(0);
|
|
]
|