代码搜索:SWAP
找到约 10,000 项符合「SWAP」的源代码
代码结果 10,000
www.eeworm.com/read/351896/10598595
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/351896/10599101
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/159545/10641408
class swap.class
www.eeworm.com/read/159545/10641415
java swap.java
public class Swap
{
public static void main(String[] args)
{
int a=222;
int b=666;
System.out.println("a="+a);
System.out.println("b="+b);
int c
www.eeworm.com/read/159517/10644727
c swap.c
/* swap.c -- swap two complex numbers (by their addresses) */
#include
void swap(a,b)
complex *a, *b;
{
complex t;
t = *a;
*a = *b;
*b = t;
}
www.eeworm.com/read/351211/10673471
vhd swap.vhd
www.eeworm.com/read/351211/10673541
vhd swap.vhd
www.eeworm.com/read/421644/10718298
adb swap.adb
with Ada.Text_IO, Ada.Integer_Text_IO;-- Ada.Swap;
use Ada.Text_IO, Ada.Integer_Text_IO;
procedure Main is
Books_Room_1 : Integer;
Books_Room_2 : Integer;
procedure swap (First : in out
www.eeworm.com/read/421644/10718506
exe swap.exe
www.eeworm.com/read/350121/10771485