代码搜索:SWAP
找到约 10,000 项符合「SWAP」的源代码
代码结果 10,000
www.eeworm.com/read/101082/6240917
c swap.c
/* --------------------------------------------------------- */
/* | Copyright (c) 1986, 1989 MIPS Computer Systems, Inc. | */
/* | All Rights Reserved. | */
/* -----
www.eeworm.com/read/101082/6252451
c swap.c
#ifndef lint
static char *sccsid = "@(#)swap.c 4.1 ULTRIX 7/2/90";
#endif lint
/************************************************************************
* *
* Copyright (c) 1986, 1987, 198
www.eeworm.com/read/100122/6274198
c swap.c
#include
main()
{
int byte1, byte2;
byte1 = getchar();
byte2 = getchar();
while (byte2 != EOF) {
putchar((byte2 & 0xFF));
putchar((byte1 & 0xFF));
byte1 = getchar();
www.eeworm.com/read/255407/6290989
cpp swap.cpp
// swap() does not swap the value of the arguments!
void swap( int v1, int v2 ) {
int tmp = v2;
v2 = v1;
v1 = tmp;
}
www.eeworm.com/read/322905/6301104
c swap.c
/*
* linux/mm/swap.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
/*
* This file should contain most things doing the swapping from/to disk.
* Started 18.12.91
*/
#include
www.eeworm.com/read/330223/6302403
txt swap.txt
// Swaps the values of two variables
import javax.swing.JOptionPane;
public class Swap
{
public static void main(String[] args)
{
// declare and initialise variables
int first = 3;
i
www.eeworm.com/read/330223/6302456
txt swap.txt
// Swaps the values of two variables
import javax.swing.JOptionPane;
public class Swap
{
public static void main(String[] args)
{
// declare and initialise variables
int first = 3;
i
www.eeworm.com/read/488496/6488257
cpp swap.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/488496/6488379
cpp swap.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/487037/6522653