代码搜索结果
找到约 820,005 项符合
if 的代码
help.if-less.html
Instruction : if-less
if-less
This instruction compares the ?BX? register to its
if.cpp
// if.cpp -- using the if statement
#include
int main()
{
using namespace std;
char ch;
int spaces = 0;
int total = 0;
cin.get(ch);
while (ch != '.') // q
if.cpp
// if.cpp -- using the if statement
#include
int main()
{
using namespace std;
char ch;
int spaces = 0;
int total = 0;
cin.get(ch);
while (ch != '.') // q
if-then-else.txt
var a,b,c;
begin
read(a,b,c);
if a>0 then write(b) else write(c);
end.
多路选择器(使用if-else语句).txt
-- Multiplexer 16-to-4 using if-then-elsif-else Statement
-- download from www.pld.com.cn & www.fpga.com.cn
library ieee;
use ieee.std_logic_1164.all;
entity mux is port(
a, b, c, d:
move-if-change
#!/bin/sh
# Like mv $1 $2, but if the files are the same, just delete $1.
# Status is 0 if $2 is changed, 1 otherwise.
if test -r $2; then
if cmp -s $1 $2; then
echo $2 is unchanged
rm -f $1
if.c
/***********************************************************************
*
* if.c
*
* Implementation of user-space PPPoE redirector for Linux.
*
* Functions for opening a raw socket and reading/writin
程序8.01:使用if...else条件构造.cpp
/* 程序8.1:使用if...else条件构造.cpp */
#include //包含头文件
using namespace std; //使用名字空间std
class Date //声明一个类Date
{
private: //声明私有成员变量
int iday;
public: //声明公共成员函数
Date(); /
if.c
/***********************************************************************
*
* if.c
*
* Implementation of user-space PPPoE redirector for Linux.
*
* Functions for opening a raw socket and reading/writin
if.c
/***********************************************************************
*
* if.c
*
* Implementation of user-space PPPoE redirector for Linux.
*
* Functions for opening a raw socket and reading/writin