代码搜索:基本运算

找到约 10,000 项符合「基本运算」的源代码

代码结果 10,000
www.eeworm.com/read/332013/12785026

opt 集合运算.opt

www.eeworm.com/read/332013/12785029

cpp 集合运算.cpp

#include #include typedef struct List//节点的定义 { int data; struct List *next; }List,* Link; Link CreateList(Link head)//创建链表 { head=(Link)malloc(sizeof(List)); head
www.eeworm.com/read/332013/12785030

ncb 集合运算.ncb

www.eeworm.com/read/332013/12785032

plg 集合运算.plg

www.eeworm.com/read/325327/13212133

txt 所有运算.txt

#include #include #include #define MAX 1000 void reverse(char *p) {//逆序存放 int i=(int)strlen(p),j; char temp; for(j=0;j
www.eeworm.com/read/314582/13564049

txt 复数运算.txt

复数运算。 #include class Complex { public: Complex( double r =0, double i =0 ); Complex(int a) { Real = a ; Image = 0 ; } void print() const; friend Complex operator+
www.eeworm.com/read/305500/13767123

sbs 加减运算.sbs

Sub Main Dim sinA As Single Dim sinB As Single Dim sinSum As Single Begin Dialog UserDialog 410,252,"加减运算",.DialogFunc ' %GRID:10,7,1,1 TextBox 160,77,140,28,.Txt2 Text 70,35,70,14,"数 值
www.eeworm.com/read/302814/13826958

rtf 几何运算.rtf

www.eeworm.com/read/480392/6673472

txt 矩阵运算.txt

MATRIX.H #include "iostream.h" class MATRIX { double **data;//矩阵数据 int n,m;//n行m列 public: MATRIX(); ~MATRIX(); void input(); void output(); MATRIX(MAT
www.eeworm.com/read/402039/11543636

txt 平方运算.txt

package basic; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Enter { /** * @param args */ public static void main(Stri