码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
第三周第二次作业
已知程序回答问题 using System; using System.Collections.Generic; using System.Text; namespace FindTheNumber { class Program { static void Main(string[] args)
分类:其他好文   时间:2016-03-19 21:02:59    阅读次数:170
软件工程个人作业2
1》题目要求: 1、题目避免重复; 2、可定制(数量/打印方式); 3、可以控制下列参数: //四则运算2//2016 3 14 Sunzhe#include<fstream>#include<iostream>using namespace std; void chengchufa(int m,i
分类:其他好文   时间:2016-03-19 19:31:51    阅读次数:261
软件工程第三周作业(2)
using System; using System.Collections.Generic; using System.Text; namespace FindTheNumber { class Program { static void Main(string[] args) { int []
分类:其他好文   时间:2016-03-19 19:29:32    阅读次数:121
Divison and Recursion-MergeSort
#include<iostream>using namespace std; void DoMerge(int array[], int buff[], int begin, int middle, int end){ int leftHalfBegin = begin; int leftHalfE
分类:其他好文   时间:2016-03-19 17:58:17    阅读次数:147
数据结构与算法-第12章二叉树和其他树-003求二叉树的高度
The code to find the tree height using a postorder traversal is given below.
分类:编程语言   时间:2016-03-19 17:40:59    阅读次数:196
C#高级编程(第六版)学习:第三十一章:Windows窗体
第三十一章 Windows窗体 创建Windows窗体应用程序 在文本编辑器中输入: /* * form.cs * a simple windows form * */ using System; using System.Windows.Forms; namespace NotepadForms ...
分类:Windows程序   时间:2016-03-19 17:40:25    阅读次数:201
POJ 2413 How many Fibs?#二分+大数加法
http://poj.org/problem?id=2413 #include #include #include using namespace std; //到第485个fib数才有100位 const int LAST=108; char res[500][110]; //存储fib数 cha...
分类:其他好文   时间:2016-03-19 16:03:52    阅读次数:158
隐藏光标与获得光标2----获得光标所在的控件
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u
分类:其他好文   时间:2016-03-19 15:57:52    阅读次数:206
C#中的文件类操作(待补充)
1.Using 打开什么,就自动关闭什么,其他的包含的连接不管XML文档读取重点:必须是标准的xml文档,否则会出错 string xmlxx = @"C:\1.xml"; using (XmlReader reader = XmlReader.Create(xmlxx)) { while (rea...
分类:Windows程序   时间:2016-03-19 14:17:42    阅读次数:326
nyist 364
#include <stdio.h>#include <algorithm>using namespace std; int main(){ int n,t[1005],k[1005]; while(scanf("%d",&n)==1){ for(int i=1;i<=n;i++) scanf("%
分类:其他好文   时间:2016-03-19 12:37:08    阅读次数:157
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!