代码搜索:JD
找到约 1,704 项符合「JD」的源代码
代码结果 1,704
www.eeworm.com/read/115326/15017957
jd
#!/bin/csh -f
if ( ! -e equation.out ) then
echo File \"equation.out\" not found.
exit 1
endif
if ( { diff -w equation.out equation.sol } ) then
echo "PROGRAM ACCEPTED."
else
echo "WRONG
www.eeworm.com/read/115326/15017967
jd
#!/bin/csh -f
if ( ! -e coloring.out ) then
echo File \"coloring.out\" not found.
exit 1
endif
./CompareGraph
www.eeworm.com/read/115326/15017986
jd
#!/bin/csh -f
if ( ! -e anagram.out ) then
echo File \"anagram.out\" not found.
exit 1
endif
if ( { diff -w anagram.out anagram.sol } ) then
echo "PROGRAM ACCEPTED."
else
echo "WRONG OUT
www.eeworm.com/read/115326/15018013
jd
#!/bin/csh -f
if ( ! -e calculator.out ) then
echo File \"calculator.out\" not found.
exit 1
endif
if ( { diff -w calculator.out calculator.sol } ) then
echo "PROGRAM ACCEPTED."
else
ech
www.eeworm.com/read/115326/15018019
jd
#!/bin/csh -f
if ( ! -e spreadsheet.out ) then
echo File \"spreadsheet.out\" not found.
exit 1
endif
if ( { diff -w spreadsheet.out spreadsheet.sol } ) then
echo "PROGRAM ACCEPTED."
else
www.eeworm.com/read/115326/15018038
jd
#!/bin/csh -f
if ( ! -e triangle.out ) then
echo File \"triangle.out\" not found.
exit 1
endif
./TestTriangle
www.eeworm.com/read/115326/15018047
jd
#!/bin/csh -f
if ( ! -e intersection.out ) then
echo File \"intersection.out\" not found.
exit 1
endif
if ( { diff -w intersection.out intersection.sol } ) then
echo "PROGRAM ACCEPTED."
els
www.eeworm.com/read/115326/15018053
jd
#!/bin/csh -f
if ( ! -e cube.out ) then
echo File \"cube.out\" not found.
exit 1
endif
./NormalizeCube
sort cube.norm > cube.norm2
rm cube.norm
if ( { diff -w cube.norm2 cube.sol } ) then
e
www.eeworm.com/read/115326/15018066
jd
#!/bin/csh -f
if ( ! -e synchronous.out ) then
echo File \"synchronous.out\" not found.
exit 1
endif
if ( { diff -w synchronous.out synchronous.sol } ) then
echo "PROGRAM ACCEPTED."
else
www.eeworm.com/read/4329/32873