代码搜索:舒服点
找到约 10,000 项符合「舒服点」的源代码
代码结果 10,000
www.eeworm.com/read/436280/7773070
cpp life_game.cpp
// life_game.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include "windows.h"
#include
#include
#include
#define MAXROW 35
#define MAXCOL 50
#define DEAD
www.eeworm.com/read/434615/7852456
cpp 001.cpp
#include
using namespace std ;
struct List
{
int money ;//链表中存放的数据
List *pNext ;//指向下一节点的指针
List()//构造函数
{
//初始化指针
pNext = NULL ;
}
};
//链表的头(全局)
List *ListHead = NULL
www.eeworm.com/read/434440/7866242
cpp 5.cpp
// 5.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include
#include
#include
using namespace std;
////保存的数据
struct mm
{
char a[7];
char b[3];
}aa[5000];
www.eeworm.com/read/299019/7898525
cpp banker.cpp
// Banker.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include
#include
using namespace std;
const int TASK_RUNNING=0;
const int TASK_SUCCEED=1;
const int TASK_WAITTING=2
www.eeworm.com/read/433381/7934354
cpp complexexample.cpp
//复数示例 ComplexExample.cpp
#include //输入输出流头文件
#include //复数类头函数
using namespace std; //名字空间
void main() // 定义控制台应用程序的入口点
{
double dcr=-3.1, dci=14.5;
complex
www.eeworm.com/read/298760/7938283
m showmoeazdt3.m
function [f]=ShowMOEA(FileName)
% 画函数的点
z1=0:0.001:1;
z2=1:0.01:(1+29 *9 /29);
for i=1:length(z1)
y(i) = 100;
for j=1: length(z2)
d = z2(
www.eeworm.com/read/397916/8016369
c graphics.c
/****************************************************************************
* 文件名:GRAPHICS.C
* 功能:图形操作程序。提供对图形液晶TG12864B-2画点、画直线、画矩形的图形函数。
* 说明:使用了disp_buf作为作图缓冲区。
******************************
www.eeworm.com/read/396269/8117506
m ex1211.m
%ex1211.m 用lsqnonlin求解最小二乘问题
clear all
x0 = [0.3 0.4]; % 初值点
[x,resnorm] = lsqnonlin(@f1211,x0) % 调用最优化函数求得x与平方和残差
www.eeworm.com/read/246680/12713016
m ex1211.m
%ex1211.m 用lsqnonlin求解最小二乘问题
clear all
x0 = [0.3 0.4]; % 初值点
[x,resnorm] = lsqnonlin(@f1211,x0) % 调用最优化函数求得x与平方和残差
www.eeworm.com/read/330730/12873367
cpp 排序综合.cpp
// 排序综合.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#define size 15000
void quicksort(int R[], int left,int right);
void heapsort(int R[],int n); //堆排序
void shellsort(int R[],int n); //希尔