You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
296 B
15 lines
296 B
const int x = 6;
|
|
|
|
// RESULT: 1/6
|
|
P=? [ F s=7 & d=x ]
|
|
|
|
// RESULT: true
|
|
P>=0.16666 [ F s=7 & d=x ]
|
|
|
|
// RESULT (exact=false): Error "accuracy"
|
|
// RESULT (exact=true): true
|
|
P>=0.1666666666 [ F s=7 & d=x ]
|
|
|
|
// RESULT (exact=false): Error "accuracy"
|
|
// RESULT (exact=true): true
|
|
P>=1/6 [ F s=7 & d=x ]
|