代码搜索结果
找到约 10,000 项符合
Test 的代码
test.c
# include
# include
# include
void main()
{
FILE *fp;
char str[100];
int i;
if((fp=fopen("file.txt", "w"))==NULL)
{
printf("无法打开文件\n");
exit(0);
test_a.c
#include
#include
void main(void)
{
char buffer[8192];
// Try reading head 1, track 1, sector 1
if (biosdisk(2, 0, 1, 1, 1, 1, buffer))
printf("Error acces
for_test.c
#include
void main ()
{
int counter;
for (counter = 1; counter
test.java
package chap04;
abstract class Hello {
abstract void print();
Hello() {
print();
}
}
class Te extends Hello {
int i = 5;
boolean a ;
void print() {
System.out.println("Hi.a="
test.java
package chap03;
public class Test {
public static void main(String[] args) {
String s1 = "aaa";
String s2 = "aaa";
System.out.println(s1==s2);
System.out.println(s1.equals(s2));
test.txt
const a=10;
var b,c;
procedure p;
begin
c:=b+a;
end;
begin
read(b);
while b#0 do
begin
call p;
write(2*c);
read(b);
end
end.