题意:求素因子只有2 3 5 7的数zsd:5842
各种打表#include#includeusing namespace std;__int64 a[6000];int main(){ int n;
memset(a,0,sizeof(a)); __int64 c=300000...
分类:
其他好文 时间:
2014-05-06 00:17:41
阅读次数:
468
题意 :求最大子段和 并且输出起始位置#includeusing namespace std;int
main(){int N,n,a[100001],first,last; cin>>N; for(int i=1;i>n; for(int
j=1;j>a[j]; int max=-...
分类:
其他好文 时间:
2014-05-06 00:12:25
阅读次数:
301
全局和静态数据区:用于存放全局变量和静态变量(全局变量和局部变量)常量数据区:用于存放常量数据代码区:用于存储代码栈:用于局部变量和函数参数堆:程序员申请(程序员控制的部分,new/delete#include
#include int gGlobal=100; // global int main...
分类:
编程语言 时间:
2014-05-05 23:48:12
阅读次数:
391
Dijkstra。 1 #include 2 #include 3 4 #define INF
0xfffffff 5 6 int map[105][105]; 7 int dp[105]; 8 char visit[105]; 9 10 int
main() {11 int n, ...
分类:
其他好文 时间:
2014-05-05 22:34:42
阅读次数:
406
学习任何语言基础时,两个数值得交换是必须掌握的,下面简绍3中方式(c语言)方法一:利用数学的计算技巧 1 #include 2 int main() 3 { 4
5 int a =10, b = 20; 6 7 printf("交换前a=%d, b=%d\n",...
分类:
编程语言 时间:
2014-05-05 22:11:33
阅读次数:
518
struts 2 跳转类型
1.dispatcher
dispatcher 为默认跳转类型,用于返回一个视图资源
xml代码 :
/main.jsp
/main.jsp
以上写法使用了两个默认,其完整的写法为:
/maini.jsp
用于页面转发,页面跳转过程一直是同一个线程,Action中的数据一直保存在。
locatio...
分类:
其他好文 时间:
2014-05-05 13:11:31
阅读次数:
311
代码:
#include
#include
#include
#include
using namespace std;
const int maxn=10003;
const int inf=0x7fffffff;
int num[maxn];
int n;
int main()
{
while(scanf("%d",&n)!=EOF&&n)...
分类:
其他好文 时间:
2014-05-04 12:39:16
阅读次数:
331
计算诸如-123,456,789 + 123,123的值
import java.math.BigInteger;
import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner cin = new Scanner(System.in);
String st...
分类:
编程语言 时间:
2014-05-03 16:50:55
阅读次数:
307
package ioTest.io2;
/*
* 自定义一个带有读取行号方法的读取文件的装饰类
*/
import java.io.FileReader;
import java.io.IOException;
import java.io.Reader;
public class MyLineNumberReaderDemo {
public static void main(Stri...
分类:
编程语言 时间:
2014-05-03 16:50:06
阅读次数:
341
package com.recursion;
import java.io.File;
public class RecursionFile {
public static void main(String[] args) {
File file = new File("G:/A");
tree(file, 0);
}
private static vo...
分类:
编程语言 时间:
2014-05-03 16:07:04
阅读次数:
265