代码搜索:数字电阻
找到约 10,000 项符合「数字电阻」的源代码
代码结果 10,000
www.eeworm.com/read/166398/10021944
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by 毕业设计数字逻辑电子仿真器.rc
//
#define IDD_ABOUTBOX 100
#define IDR_MAINFRAME 128
www.eeworm.com/read/165281/10069893
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// 数字2的识别.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
www.eeworm.com/read/357196/10213697
js verify.js
/**
* @author WangShuhao
*/
/**
* 是否为数字
* @param {Object} value
*/
function Verify_Number(value)
{
var myReg = /^\d+$/;
if(myReg.test(value)) return true;
return false;
}
/**
* 身份证号码
* @
www.eeworm.com/read/354720/10331470
c simplespiout.c
/**********************************************
** 文件名 :SimpleSPIOut.c **
** 功能描述: 8个LED数码管分别显示1到8八个数字**
**********************************************/
#include "p30f6014.h" /
www.eeworm.com/read/420269/10807709
asp anews_list.asp
sub check()
c=document.form1.page.value
if c"" then
if not IsNumeric(c) then
msgbox " 页数只能输入数字"
document.form1.pag
www.eeworm.com/read/451041/7473132
java readdouble.java
package Mypackage;
import java.io.* ;
public class ReadDouble
{ public static double read()
{System.out.println("请输入一个数字");
String a=input();
try
{return Double.parseDouble(a);