// parts.h #ifndef _PARTS_H_#define _PARTS_H_ #include <vector>#include <map>#include <string>#include <iostream> using namespace std; //************* ...
分类:
编程语言 时间:
2016-04-06 23:08:27
阅读次数:
159
Enum 实例 using System; using System.Collections.Generic; public class MyClass { enum EmpType { Manager,Grunt,Contractor,VP } static void AskForBonus(Em ...
分类:
编程语言 时间:
2016-04-06 21:47:45
阅读次数:
157
1 #include <stdio.h> 2 #include <algorithm> 3 #define MAX 100000 4 #define LL long long 5 #define unsigned U 6 //using namespace std; 7 int cas=1,T; 8 ...
分类:
其他好文 时间:
2016-04-06 21:43:24
阅读次数:
209
输入字符串,并比较输入频率最大的那个字符串 #include<iostream> using namespace std; int main( ) { int round; cin >> round; while (round) { char ballo[1001][16]; int fre[100 ...
分类:
其他好文 时间:
2016-04-06 21:39:26
阅读次数:
144
C#执行oracle存储过程,存储过程代码为: 其中pak_pub.ut_cursor的定义为: 两种方式:1、用微软自带的ORACLE数据访问接口(using System.Data.OracleClient) 注意.NET 4.0里已经没有了System.Data.OracleClient 2、 ...
分类:
数据库 时间:
2016-04-06 21:33:36
阅读次数:
304
http://blog.csdn.net/a237428367/article/details/5987832 using System; using System.Collections.Generic; using System.Linq; using System.Text; using Sy ...
组员:刘伟 李晨(http://www.cnblogs.com/jiajun1/) 1.设计思路 这次采用的C#制作的图形化的四则运算程序。 2.源代码 1 using System; 2 using System.Collections.Generic; 3 using System.Compon ...
分类:
其他好文 时间:
2016-04-06 20:16:42
阅读次数:
276
1. 上传文件前台页面 上传文件后台代码 需要引入 using System.IO; 2. 下载文件前台页面 下载文件后台代码 值得注意的就是文件名设置一下编码,不然出现下载时文件名乱码: HttpUtility.UrlEncode(docName, System.Text.Encoding.UTF ...
#include<iostream>#define N 100#include<ctime>using namespace std; typedef struct{ int d[N]; int a[N][N]; int x; }A;void set(A &shu, int x, int y)//x, ...
分类:
编程语言 时间:
2016-04-06 18:30:14
阅读次数:
249
同组人: 黄云龙 郝哲 评价:通过这次结对编程的过程,我学会了和同学一起合作完成项目。并通过此过程,了解了自身的不足,以及同组人的高明之处,我应该向他学习,更好的提高自己。 感谢:感谢和我一组的郝哲同学的悉心指导,感谢冯老师的耐心教导,以及助教的指导,再次感谢。 //事件响应 using Syste ...
分类:
其他好文 时间:
2016-04-06 18:11:14
阅读次数:
183