try 保护代码,throw抛出值,catch接受并处理异常一般格式try{
//程序中抛出异常 throw value;}catch(valuetype v){ //异常处理程序}View Code测试示例#include using
namespace std;int main...
分类:
其他好文 时间:
2014-05-01 10:21:13
阅读次数:
407
题目我要开始练习一些java的简单编程了^v^import java.io.*;import
java.util.*;import java.math.*;public class Main { /** * @param args */ public
static voi...
分类:
编程语言 时间:
2014-05-01 10:03:42
阅读次数:
411
#include #include #include #define PI
3.1415926535898#define e 2.718281828459using namespace
std;///斯特林///n!=sqrt(2*PI*n)*pow(n/e,n)int main(){ int...
分类:
其他好文 时间:
2014-05-01 09:35:45
阅读次数:
526
题目:已知三个整型数8,12,6,按公式s=a+b*c计算,并显示结果思路:定义三个整型变量a,b,c
定义一个变量s用来保存运算结果 输出程序: 1 #include 2 3 void main() 4 { 5 int a = 8; 6 int b = 12;
7 ...
分类:
编程语言 时间:
2014-05-01 09:26:46
阅读次数:
347
本次内容:java常用类1、包装类 1 package array; 2 3 public class
wrapperclass { 4 public static void main(String[] args) 5 { 6 Integer i=new
Inte...
分类:
编程语言 时间:
2014-05-01 09:16:28
阅读次数:
384
注意变换思维,然后就是水题。(如果卡时还可以进一步二分优化。)#include long
existed[10000][32];int main(void){ int N;// freopen("poj2443.txt", "r", stdin);
scanf("%d", &N);...
分类:
其他好文 时间:
2014-05-01 09:15:47
阅读次数:
373
本次主题:指针与数组在进入主题前,我们先看一个例子:#includeint main(){
int a[5] = { 1, 2, 3, 4, 5 }; int *ptr = (int *) (&a + 1); printf("%d,%d\n",
*(a + 1), *(ptr - ...
分类:
其他好文 时间:
2014-05-01 08:40:11
阅读次数:
324
package algorithm.sort;public class CountingSort {
public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4,
9, 8, 6, 1}; int[] ...
分类:
其他好文 时间:
2014-05-01 03:25:05
阅读次数:
252
package algorithm.sort;public class HeapSort {
public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4,
9, 8, 6, 1}; sort(a); p...
分类:
其他好文 时间:
2014-05-01 03:24:04
阅读次数:
332
在C++中,explicit关键字主要用于防止隐式转换,用于修饰构造函数、复制构造函数。例如有一个类:class A { public: A( int
count ) : m_data( count ){} private: int m_data; };int main() { ...
分类:
其他好文 时间:
2014-05-01 03:03:36
阅读次数:
311