码迷,mamicode.com
首页 >  
搜索关键字:zoj 1109 language of    ( 11123个结果
echo print() print_r() var_dump()的区别
常见的输出语句echo()可以一次输出多个值,多个值之间用逗号分隔。echo是语言结构(language construct),而并不是真正的函数,因此不能作为表达式的一部分使用。print()函数print()打印一个值(它的参数),如果字符串成功显示则返回true,否则返回false。print...
分类:其他好文   时间:2014-05-01 21:40:50    阅读次数:355
zoj Fibonacci Numbers ( java , 简单 ,大数)
题目//f(1) = 1, f(2) = 1, f(n > 2) = f(n - 1) + f(n - 2)import java.io.*;import java.util.*;import java.math.*;public class Main { /** * @xqq ...
分类:编程语言   时间:2014-05-01 18:55:52    阅读次数:450
[伯努利数] poj 1707 Sum of powers
题目链接: http://poj.org/problem?id=1707 Language: Default Sum of powers Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 735   Accepted: 354 D...
分类:其他好文   时间:2014-05-01 18:36:32    阅读次数:385
HTML和XHTML的一点事儿.
什么是 HTML?HTML 是用来描述网页的一种语言。HTML 指的是超文本标记语言 (Hyper Text Markup Language)HTML 不是一种编程语言,而是一种标记语言 (markup language)标记语言是一套标记标签 (markup tag)HTML 使用标记标签来描述网...
分类:Web程序   时间:2014-05-01 09:24:13    阅读次数:356
PHP引用(&)使用详解
摘自:PHP引用(&)使用详解官方文档:1.引用是什么:http://www.php.net/manual/zh/language.references.whatare.php2.引用做什么:http://www.php.net/manual/zh/language.references.whatd...
分类:Web程序   时间:2014-05-01 00:28:26    阅读次数:470
CKEditor学习笔记4(CKEditor基本配置)
CKEDITOR.editorConfig = function( config ) { // config.language = 'fr'; // config.uiColor = '#AADC6E'; config.filebrowserBrowseUrl = '/CKEditorAndCKFinder/ckfinder/ckfinder.html' ; config.fi...
分类:其他好文   时间:2014-04-30 22:21:39    阅读次数:366
ZOJ 2588 Burning Bridges 求无向图桥 边双连通裸题
题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=1588 #include #include #include #include #include using namespace std; #define N 10050 #define M 200005 int n,m;//n个点 m条边 struct Edge{...
分类:其他好文   时间:2014-04-29 13:25:21    阅读次数:383
ZOJ 3609 Modular Inverse 解线性模方程
点击打开链接 Modular Inverse Time Limit: 2 Seconds      Memory Limit: 65536 KB The modular modular multiplicative inverse of an integer a modulo m is an integer x such that a-1≡x (mod m). This is...
分类:其他好文   时间:2014-04-29 13:15:22    阅读次数:326
pl/sql(1)
1.PL/SQL概述 PL/SQL(Procedure Language/Structuer Query Language)是Oracle对标准SQL规范的扩展,全面支持SQL的数据操作、事务控制等。PL/SQL完全支持SQL数据类型,减少了在应用程序和数据库之间转换数据的操作。 构成PL/SQL程序的基本单位是程序块。程序块由过程、函数和无名块3种形式组成,它们之间可以互相嵌套。...
分类:数据库   时间:2014-04-27 21:45:59    阅读次数:400
java Annotation原理
Annotations are one of the fundamental language changes introduced in Java SE5. They provide information that you need to fully describe your program, but that cannot be expressed in Java. Thus, anno...
分类:编程语言   时间:2014-04-27 21:14:59    阅读次数:431
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!