代码搜索:外差式
找到约 10,000 项符合「外差式」的源代码
代码结果 10,000
www.eeworm.com/read/169583/9849743
m 交互式标注.m
x=1:0.1*pi:2*pi;
y=sin(x);
plot(x,y);
gtext('y=sin(x)','FontSize',12)
www.eeworm.com/read/166298/10024837
txt 四元式表.txt
1:(=, 100, , b)
2:(+, 1, 3, T1)
3:(*, 2, T1, T2)
4:(=, T2, , a)
5:(j>, b, 10, 7)
6:(j, , , 9)
7:(=, 1, , a)
8:(j, , , 14)
9:(j>=, b, 5, 11)
10:(j, , , 13)
11:(=, 2, , a)
12:(j, , , 14)
1
www.eeworm.com/read/164975/10079905
txt 隐式数值转换.txt
using System;
class Test
{
public static void Main()
{
byte x=16;
Console.WriteLine("x={0}",x);
ushort y=x;
Console.WriteLine("y={0}",y);
y=65535;
Console.WriteLi
www.eeworm.com/read/164975/10079907
txt 隐式枚举转换.txt
using System;
enum Weekday{ Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday };
class Test
{
public static void Main(){
Weekday day;
day=0;
Console.WriteLine(day);
www.eeworm.com/read/164975/10079912
txt 显式数值转换.txt
using System;
class Test
{
static void Main()
{
long longValue=Int64.MaxValue;
int intValue=(int)longValue;
Console.WriteLine("(int){0}={1}",longValue,intValue);
}
}
结果
www.eeworm.com/read/164975/10079914
txt 隐式引用转换.txt
using System;
class Test
{
public static void Main()
{
float[] float_arr=new float[10];
int[] int_arr=new int[10];
float_arr=int_arr;
}
}
using System;
class Class1
{
www.eeworm.com/read/356340/10230822
pdf 嵌入式系统.pdf
www.eeworm.com/read/356340/10230824
pdf 嵌入式设计.pdf
www.eeworm.com/read/353189/10466303
doc 指针式时钟.doc
www.eeworm.com/read/277524/10629751
cpp 多项式相乘.cpp
#include
using namespace std;
#include
#include
#include
typedef struct Lnode
{
double num;
int exp;
struct Lnode* next;