代码搜索:LAB
找到约 10,000 项符合「LAB」的源代码
代码结果 10,000
www.eeworm.com/read/296805/8076471
htm lab6.htm
/* lab6.c */
#include "employee.h"
#include <stdio.h>
int main() {
int i;
/* Fill Employee array: */
while (addEmployee() != -1)
;
www.eeworm.com/read/296805/8076572
htm lab3.htm
/* 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/296805/8076574
c lab3.c
/* lab3.c */
#include
int main()
{
int osum = 0;
int esum = 0;
int n;
scanf("%d", &n);
if (n % 2 == 0)
esum += n;
else
osum += n;
www.eeworm.com/read/296805/8076578
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/296805/8076583
htm lab7.htm
/* 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/296805/8076596
htm lab4.htm
/* lab4.c */
#include <stdio.h>
int main() {
int osum = 0;
int esum = 0;
int n;
/* scanf returns the number of items read */
while
www.eeworm.com/read/296805/8076601
c lab4.c
/* lab4.c */
#include
int main()
{
int osum = 0;
int esum = 0;
int n;
/* scanf returns the number of items read */
while (scanf("%d", &n) == 1)
{
www.eeworm.com/read/296805/8076609
c lab4a.c
/* lab4a.c */
#include
int main()
{
int osum = 0;
int esum = 0;
int n;
for (;;) /* repeat forever */
{
printf("Enter an integer (0 to quit): "
www.eeworm.com/read/296805/8076626
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/296805/8076631
htm lab6.htm
/* lab6.c */
#include "employee.h"
#include <stdio.h>
int main() {
int i;
/* Fill Employee array: */
while (addEmployee() != -1)
;