17 lines
343 B
C
17 lines
343 B
C
|
/*
|
||
|
* Cours "Sémantique et Application à la Vérification de programmes"
|
||
|
*
|
||
|
* Josselin Giet 2021
|
||
|
* Ecole normale supérieure, Paris, France / CNRS / INRIA
|
||
|
*/
|
||
|
|
||
|
void main(){
|
||
|
int i = rand(1, 23);
|
||
|
int j = rand(5, 42);
|
||
|
if( i + j > 60){
|
||
|
assert(i >= 19);
|
||
|
assert(j >= 38);
|
||
|
assert(i != 19); //@KO
|
||
|
assert(j != 38); //@KO
|
||
|
}
|
||
|
}
|