代码搜索:熔丝位
找到约 10,000 项符合「熔丝位」的源代码
代码结果 10,000
www.eeworm.com/read/149433/5699908
java digsum3.java
public class Digsum3
{
public static void main(String args[])
{
int n=123,a=0,b=0,c=0,digsum=0;
a = n % 10; //个位
b = (n%100) /10; //十位
//or b=
www.eeworm.com/read/449241/6302032
java digsum3.java
public class Digsum3
{
public static void main(String args[])
{
int n=123,a=0,b=0,c=0,digsum=0;
a = n % 10; //个位
b = (n%100) /10; //十位
c
www.eeworm.com/read/493513/6394799
java stopwordshandler.java
/**
* 停用词处理器
*/
public class StopWordsHandler
{
private static String stopWordsList[] ={"的", "我们","要","自己","之","将","“","”",",","(",")","后","应","到","某","后","个","是","位","新","一","两","在","中","或",
www.eeworm.com/read/484481/6577488
c main.c
///////////////////////////////////////////////////////////////////
// 16位累加器测速程序(PACB累加器),PT0口输入脉冲
//每次记录脉冲时间可修改宏:TIME_INTER
//author:whut_wj
/////////////////////////////////////////////////////
www.eeworm.com/read/407557/11415905
java bitequalstest.java
/**
* 演示了位运算符赋值的使用
*/
package sample;
public class BitEqualsTest {
public static void main(String args[]) {
int a = 1;
int b = 2;
int c = 3;
a |= 4;
b >>= 1;
c
www.eeworm.com/read/405853/11455664
c main.c
///////////////////////////////////////////////////////////////////
// 16位累加器测速程序(PACB累加器),PT0口输入脉冲
//每次记录脉冲时间可修改宏:TIME_INTER
//author:whut_wj
/////////////////////////////////////////////////////
www.eeworm.com/read/348212/11605501
h lpc_2132.h
#include
#define uchar unsigned char
#define uint unsigned int
typedef unsigned char uint8; /* 无符号8位整型变量 */
typedef signed char int8;
www.eeworm.com/read/346762/11724149
h ds18b20.h
#include
#include
/**************宏定义***************/
#define uchar unsigned char
#define uint unsigned int
/*************位定义****************/
sbit TMDAT=P2^0; //控制线兼数据
www.eeworm.com/read/155674/11855793
m mutation.m
function path=Mutation(path,Pm)
%位对调变异
[row,col]=size(path);
childpath=path;
for i=1:row
point=randperm(col);
tempP=rand(1);
if(tempP
www.eeworm.com/read/151868/12165575
h display.h
#include "predefine.h"
class CDisplay
{
public:
CDisplay();//构造函数
virtual ~CDisplay();//析构函数
private:
void FindBlankPosition();//寻找空白位位置
private:
int m_CurrentG;//节点G值
int