代码搜索:test1
找到约 3,239 项符合「test1」的源代码
代码结果 3,239
www.eeworm.com/read/121074/14770314
java test1.java
public class Test1 {
public static void main(String[] args) {
System.out.println("What's wrong with this program?");
}
}
www.eeworm.com/read/163871/5507739
cpp test1.cpp
// Test1.cpp
//
// Generated by DriverWizard version DriverStudio 3.1.0 (Build 1722)
// Requires Compuware's DriverWorks classes
//
#define VDW_MAIN
#include
#include
#inc
www.eeworm.com/read/162614/5523324
f90 assumed_size.f90
! Program to test assumed size arrays
subroutine test2(p)
integer, dimension(2, *) :: p
if (any (p(:, 1:3) .ne. reshape((/1, 2, 4, 5, 7, 8/), (/2, 3/)))) &
call abort ()
end subroutine
pr
www.eeworm.com/read/162614/5526282
f90 do_1.f90
! { dg-do run }
! Program to check corner cases for DO statements.
program do_1
implicit none
integer i, j
! limit=HUGE(i), step 1
j = 0
do i = HUGE(i) - 10, HUGE(i), 1
j = j + 1
end
www.eeworm.com/read/475023/6799738
m51 test1.m51
BL51 BANKED LINKER/LOCATER V4.13 05/06/2008 16:09:38 PAGE 1
BL51 BANKED LINKER/LOCATER V4.13, INVOKED BY:
D:\KEIL\C51\BIN\BL51.EXE test1.
www.eeworm.com/read/472415/6876934
lnp test1.lnp
"STARTUP.obj",
"main.obj",
"LcdCon.obj",
"DS1302.obj",
"DS1820.obj",
"key.obj"
TO "test1"
RAMSIZE(256)
www.eeworm.com/read/111988/15496989
cpp main.cpp
#include
#include "array.h"
int main(void)
{
Array test1(10);
for (int i = 0; i < 10; i++)
{
test1[i] = i;
cout
www.eeworm.com/read/188093/8572911
h sortable.h
/*------------------------------------------------------------------------*/
/* */
/* SORTABLE.H
www.eeworm.com/read/187629/8613486
java realtest.java
import javax.swing.JFrame;
public class RealTest extends JFrame
{
public static void main(String args[])
{
Test1 panel = new Test1();
panel.start();
JFrame application = new JFrame();
www.eeworm.com/read/187587/8622095
pl0 3.pl0
PROGRAM XYZ;
VAR
TEST1,TEST2,TEST3,TEST4:INTEGER;
BEGIN
TEST1:=10;
TEST2:=33;
TEST3+=TEST1*12+3;
TEST4-=TEST2 DIV 12 +1+3;
WRITE(TEST1,TEST2,TEST3,TEST4);
END.