代码搜索:LAB

找到约 10,000 项符合「LAB」的源代码

代码结果 10,000
www.eeworm.com/read/166633/10009865

html lab3.html

/* lab3.c */ #include <stdio.h> int main() { int osum = 0; int esum = 0; int n; scanf("%d", &n); if (n % 2 == 0) esum +=
www.eeworm.com/read/166633/10009968

c lab7.c

/* lab7.c */ #include "employ2.h" #include #include #define MAXEMPS 5 int main() { struct Employee* emps[MAXEMPS]; struct Employee* p; int i, nemps = 0;
www.eeworm.com/read/166633/10009974

html lab7.html

/* lab7.c */ #include "employ2.h" #include <stdio.h> #include <stdlib.h> #define MAXEMPS 5 int main() { struct Employee* emps[MAXEMPS]; stru
www.eeworm.com/read/166633/10010051

c lab6.c

/* lab6.c */ #include "employee.h" #include int main() { int i; /* Fill Employee array: */ while (addEmployee() != -1) ; /* Print each Employee
www.eeworm.com/read/166633/10010061

html lab6.html

/* lab6.c */ #include "employee.h" #include <stdio.h> int main() { int i; /* Fill Employee array: */ while (addEmployee() != -1) ;
www.eeworm.com/read/166633/10010140

cpp lab9.cpp

// lab9.cpp #include "employee.h" #include using namespace std; int main() { Employee p1("Mantle", "Mickey", "Outfielder", 58); Employee p2("Maris", "Roger", "Shortstop", 6
www.eeworm.com/read/166633/10010145

html lab9.html

// lab9.cpp #include "employee.h" #include <iostream> using namespace std; int main() { Employee p1("Mantle", "Mickey", "Outfielder", 58); Employee p
www.eeworm.com/read/166633/10010329

html lab2.html

/* lab2.c */ #include <stdio.h> int main() { float x; int n; printf("Enter a real number: "); fflush(stdout); scanf("%f", &x);
www.eeworm.com/read/166633/10010331

c lab2.c

/* lab2.c */ #include int main() { float x; int n; printf("Enter a real number: "); fflush(stdout); scanf("%f", &x); n = (int)(x + 0.5); printf(
www.eeworm.com/read/166633/10010382

html lab4a.html

/* lab4a.c */ #include <stdio.h> int main() { int osum = 0; int esum = 0; int n; for (;;) { /* repeat forever */ printf("Ent