代码搜索:LAB
找到约 10,000 项符合「LAB」的源代码
代码结果 10,000
www.eeworm.com/read/123847/14609897
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/123847/14609959
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", 60
www.eeworm.com/read/123847/14609965
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/123847/14609974
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/123847/14610000
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/123847/14610006
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/123847/14610033
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/123847/14610055
c lab5.c
/* lab5.c */
#include
#include
#define MAXEMPS 10
struct Employee {
char last[16];
char first[11];
char title[16];
int salary;
};
int main() {
www.eeworm.com/read/123847/14610096
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/123847/14610099
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): ");