搜索结果

找到约 903 项符合 stRing-include 的查询结果

习题答案 java入门编程合集

题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?    //这是一个菲波拉契数列问题 public class lianxi01 { public static void main(String[] args) { System.out.println("第1个月的兔子对数:&n ...
https://www.eeworm.com/dl/516446.html
下载: 2
查看: 28

笔记 编写一个程序,要求用户输入一年12个月每月的降雨总量,并采用一个float数组存储。

程序显示: 一年内总降雨量、平均每月的降雨量、降雨量最大的月份和最小的月份。 #include<iostream> using namespace std; #include<stdlib.h> int main() .. .. .. cout<<"降雨量最小的月份是:"<<minyue<<"月   "<<"降雨量为:"<<min<<endl; } ...
https://www.eeworm.com/dl/517028.html
下载: 3
查看: 1049

源码 数据结构实验

#include <stdio.h>   #include <stdlib.h> ///链式栈      typedef struct node   {       int data;       struc ...
https://www.eeworm.com/dl/517413.html
下载: 2
查看: 48

软件 道理特分解法

#include "iostream" using namespace std; class Matrix { private: double** A; //矩阵A double *b; //向量b public: int size; Matrix(int ); ~Matrix(); friend double* Dooli(Matrix& ); void Input(); void Disp(); }; Matrix::Matrix(int x) { size= ...
https://www.eeworm.com/dl/517487.html
下载: 2
查看: 30

源码 学生成绩管理

#include<stdio.h> #include<windows.h> int xuanxiang; int studentcount; int banjihao[100]; int xueqihao[100][10]; char xm[100][100]; int xuehao[100][10]; int score[100][3]; int yuwen; int shuxue[000]; int yingyu[100]; int c[100]; int p; char x[1000][100]="",y[100][100]="";/*x学院 y专业 z班级*/  ...
https://www.eeworm.com/dl/517591.html
下载: 4
查看: 36

源码 The Universal Radio Hacker (URH)

The Universal Radio Hacker (URH) is a software for investigating unknown wireless protocols. Features include * __hardware interfaces__ for common Software Defined Radios * __easy demodulation__ of signals * __assigning participants__ to keep overview of your data * __customizable decodings__ to cr ...
https://www.eeworm.com/dl/518420.html
下载: 2
查看: 142

手册 MSP430G2553

DESCRIPTION The Texas Instruments MSP430 family of ultra-low-power microcontrollers consists of several devices featuring different sets of peripherals targeted for various applications. The architecture, combined with five low-power modes, is optimized to achieve extended battery life in portable m ...
https://www.eeworm.com/dl/518590.html
下载: 1
查看: 21

源码 sha算法

SHA1(Input: String)
https://www.eeworm.com/dl/518890.html
下载: 1
查看: 71

源码 C语言编写雅可比迭代

# include<stdio.h> # include<math.h> # define N 3 main(){     float NF2(float *x,float *y);     float A[N][N]={{10,-1,-2},{-1,10,-2},{-1,-1,5}};     float b[N]={7.2,8.3,4.2},sum=0;     float x[N]= {0,0,0},y[N]={0},x0[N]={};    &n ...
https://www.eeworm.com/dl/520831.html
下载: 1
查看: 90

源码 CMPP3.0源码

CMPP3.0源码 java实现 1.将common文件夹、MsgConfig.properties放于src根目录下。 2.修改MsgConfig.properties配置文件对应的内容为可用参数。 3.方法入口:common.msg.util.MsgContainer     sendWapPushMsg(String url,String desc,String cusMsisdn):发送web push短信;     & ...
https://www.eeworm.com/dl/520977.html
下载: 1
查看: 33