搜索资源列表
数组操作算法作业
- 该函数将数组b的前n个元素追加到数组a的前m个元素后,假定数组a具有至少存放m+n个元素的空间。例如,如果数组a为{22,33,44,55,66,77,88,99},数组b为{20,30,40,50,60,70,80,90},则调用append(a,5,b,3)后,将把数组a变为{22,33,44,55,66,20,30,40}。注意数组b并没有改变,而且数组a中只需改变n个元素。,The function of the array b before the n additional eleme
Convert77to90
- 一个将Fortran 77 转换为 Fortran 90 格式的小程序,由于时间关系,代码写得很混乱,功能也不完善,只包含了代码缩进,注释,换行,do-enddo语句的转换。-A Fortran 77 to Fortran 90 format is converted to a small program due to time constraint, the code is written very confusing, function not perfect, contains only
f77_to_f90
- fortran 77转fortran 90的fortran 90源代码-source code for fortran 77 to fortran 90
introduce-of-Fortran-77-and-90-95
- 一本相当不错的Fortran教程,实用、详尽但不拖沓,有助于系统了解Fortran。-a useful book to introduce the Fortran, help you to asquaint yourself with the Fortran systematically.
ch06
- 1. 编写并测试如下函数:void Add (int a[], int m, int b[], int n) 该函数将数组b的前n个元素追加到数组a的前m个元素后,假定数组a具有至少存放m+n个元素的空间。例如,如果数组a为{22,33,44,55,66,77,88,99},数组b为{20,30,40,50,60,70,80,90},则调用Add(a,5,b,3)后,将把数组a变为{22,33,44,55,66,20,30,40}。注意数组b并没有改变,而且数组a中只需改变n个元素。 编写一
lab6_1
- 编写并测试如下函数: void Add (int a[], int m, int b[], int n) 该函数将数组b的前n个元素追加到数组a的前m个元素后,假定数组a具有至少存放m+n个元素的空间。例如,如果数组a为{22,33,44,55,66,77,88,99},数组b为{20,30,40,50,60,70,80,90},则调用Add(a,5,b,3)后,将把数组a变为{22,33,44,55,66,20,30,40}。注意数组b并没有改变,而且数组a中只需改变n个元素。-Write a
First_Test1
- 1、使用System.Array类的方法获取已知数组(数组元素为80,90,67,89,78,85,45,69,77,95)的维数、长度,并对数组排序、反转。 提示:Rank,Length,Sort(),Reverse() 2、 使用Random方法生成随机数。数组A中有8个互不相同的元素,数组B中有5个互不相同的元素,A和B中的数为100以内的正整数。编程产生数组C,C中包含在A中但不在B中的元素。 任意输入两个正整数a,b, 求a+b的和, a,b的取值范围为1—10100
f77_to_f90
- fortran格式转换工具。从77到90格式。-transform the format form 77 to 90.
1
- 1. 编写并测试如下函数: void Add (int a[], int m, int b[], int n) 该函数将数组b的前n个元素追加到数组a的前m个元素后,假定数组a具有至少存放m+n个元素的空间。例如,如果数组a为{22,33,44,55,66,77,88,99},数组b为{20,30,40,50,60,70,80,90},则调用Add(a,5,b,3)后,将把数组a变为{22,33,44,55,66,20,30,40}。注意数组b并没有改变,而且数组a中只需改变n个元素。
fortran77-to-Fortran90-converter
- 1.dft_离散Fourier变换 2.fft 快速Fourier变换 3.f77_to_f90 将Fortran77文件转化为Fortran90文件格式 4.f90_to_f77 将Fortran90文件转化为Fortran77文件格式 5.fixcon fortran-77-to-90-converter 将Fortran77文件转化为Fortran90文件格式 -1.dft_ Discrete Fourier Transform Fast Fourier Transform
program
- 如图所示为一个5节点电力系统。已知负荷1,2,3的大小分别为(67.5+j41.83)MVA,(60.0+j37.18)MVA,(90.0+j55.77)MVA;发电机出力为SG1=97.5+j60MVA。取母线2为平衡节点,线路参数如表1所示,进行潮流计算。-As shown in Figure 5 is a node power system. Known load size 1,2,3 respectively (67.5+ j41.83) MVA, (60.0+ j37.18) MVA,
f77_to_f90
- 可以将旧版的Fortran77语言转换为新版的Fortran90,方便使用(A program to convert FORTRAN 77 source form to Fortran 90 source *)