代码搜索结果

找到约 10,000 项符合 7 的代码

例7-7.c

#include "reg51.h" #define ON 1 #define OFF 0 sbit Lamp1=P0^0; sbit Lamp2=P0^1; sbit Lamp3=P0^0; sbit Lamp4=P0^1; sbit Lamp5=P0^0; sbit Lamp6=P0^1; sbit Lamp7=P0^0; sbit Lamp8=P0^1;

ch7_7.cpp

//********************* //** ch7_7.cpp ** //********************* #include int maximum(int[][4],int,int); void main() { int sg[3][4]={{68,77,73,86},

ex7_7.m

a=[1,2,-2;1,1,1;2,2,1]; b=[9;7;6]; [x,n]=jacobi(a,b,[0;0;0]) [x,n]=gauseidel(a,b,[0;0;0])

ex7_7.m

a=[1,2,-2;1,1,1;2,2,1]; b=[9;7;6]; [x,n]=jacobi(a,b,[0;0;0]) [x,n]=gauseidel(a,b,[0;0;0])

example7_7.java

import java.awt.*; import java.awt.event.*; import java.math.*; class MyButton extends Button implements ActionListener { String name;TextField text; Container con; MyButton(String

app7_7.java

// app7_7, 调用method并传递参数 class CCircle // 定义类CCircle { double pi=3.14; // 将数据成员赋值初值

xt7-7.cpp

#include using namespace std; #define NULL 0 struct student {long num; float score; student *next; }; int n; void print(student *head) {student *p;