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.
17 lines
360 B
17 lines
360 B
#include "testlib.h"
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
setName("compare two signed int%d's", (int)(8 * sizeof(int)));
|
|
registerTestlibCmd(argc, argv);
|
|
|
|
int ja = ans.readInt();
|
|
int pa = ouf.readInt();
|
|
|
|
if (ja != pa)
|
|
quitf(_wa, "expected %d, found %d", ja, pa);
|
|
|
|
quitf(_ok, "answer is %d", ja);
|
|
}
|