#include<iostream>#include<cstdio>#include<cmath>#include<cstring>using namespace std;char a[1001];int now=0;char b[101][101];int main(){ int n,m; cin ...
分类:
其他好文 时间:
2017-03-07 23:07:27
阅读次数:
196
一:ef中的三种开发方式 1. db first。。。 db放在第一位,在我们开发之前必须要有完整的database,实际开发中用到最多的。。。 <1> DBset集合的单复数。。。 db => model 2. model first。。。 根据model生成数据库,和我们的sqlserver的可 ...
分类:
数据库 时间:
2017-03-07 23:05:39
阅读次数:
400
class Program { static double size = 2.443438914027149; static void Main(string[] args) { if (!System.IO.Directory.Exists("Img")){ System.IO.Directory... ...
分类:
其他好文 时间:
2017-03-07 23:02:11
阅读次数:
212
#include "stdafx.h"#include<iostream>using namespace std; int _tmain(int argc, _TCHAR* argv[]){ int G[10]={1,3,4,8,3,11,8,4,6,8}; int i,j,max=0; for(i ...
分类:
其他好文 时间:
2017-03-07 22:55:41
阅读次数:
216
代码部分: public class practice {public static void main(String[] args) {int b;for (int i = 0; i <= 300; i++) {int a = (int) (Math.random() * 100);b = (in ...
分类:
编程语言 时间:
2017-03-07 22:50:40
阅读次数:
163
package a; import java.text.DecimalFormat; public class bb { public static void main(String[] args) { //实例化方法 operation(); } public static void operat ...
分类:
编程语言 时间:
2017-03-07 22:50:20
阅读次数:
166
在<<c++ primer>>第四版Exercise Section 9.3.4 的Exercise 9.20 是这样的一道题目:编写程序判断一个vector<int> 容器包含的元素是否与list<int> 容器完全相同。测试代码如下: 1 #include "stdafx.h" 2 #inclu ...
分类:
编程语言 时间:
2017-03-07 22:44:01
阅读次数:
227
希尔排序 第8节 希尔排序练习题 <!--more--> 对于一个int数组,请编写一个希尔排序算法,对数组元素排序。 给定一个int数组A及数组的大小n,请返回排序后的数组。保证元素小于等于2000。 测试样例: [1,2,3,5,2,3],6 [1,2,2,3,3,5] Java (javac ...
分类:
编程语言 时间:
2017-03-07 22:42:12
阅读次数:
240
#include<iostream>using namespace std; int main(){ int n,m=1;//n为步数,m为方法数 cin>>n; int one=1,two=0;//one为当前步数最后一步为1的方法数,two为当前步数最后一步为2的方法数 for(int i=1; ...
分类:
其他好文 时间:
2017-03-07 22:41:43
阅读次数:
147
1.// 2.//Helloworld 应用示例 3.// 4.public class HelloWorldApp{ 5. public static void main(String[] args){ 6. System.out.println("你好,欢迎来到我的博客”) 7. } 8. } ...
分类:
编程语言 时间:
2017-03-07 22:40:43
阅读次数:
146