码迷,mamicode.com
首页 >  
搜索关键字:show    ( 18849个结果
dialog插件demo
基本操作默认窗体[html]view plaincopyprint?new Dialog('这是一个默认对话框').show(); 非模态对话框[html]view plaincopyprint?newDialog('非模态对话框,可以打开多个!',{modal:false}).show(); 自动...
分类:其他好文   时间:2014-09-03 19:35:07    阅读次数:352
UVA100 The 3n + 1 problem
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=36 简单模拟题。 #include #include using namespace std; int len[1000001]; int main() { int i,a,b,a1...
分类:其他好文   时间:2014-09-03 18:16:07    阅读次数:183
UVA 10801 Lift Hopping (最短路)
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1742 Problem ? Lift Hopping Time Limit: 1 second Ted the bellhop: "I'm coming up and if t...
分类:其他好文   时间:2014-09-03 18:09:37    阅读次数:282
C语言八进制和十六进制数
一 赋值 int dex = 100;// 默认十进制 int oct = 0144;// 八进制,以0开始 int hex = 0x64;// 十六进制,以0x开始 二 输出 void show(int x) { printf("dec = %d; octal = %o; hex = %x\n",x,x,x); printf("dec = %d; octal = %#o; ...
分类:编程语言   时间:2014-09-03 13:04:16    阅读次数:210
C#中MessageBox使用方法大全(附效果图)
我们在程序中常常会用到MessageBox。 MessageBox.Show()共同拥有21中重载方法。现将其常见使用方法总结例如以下:1.MessageBox.Show("Hello~~~~");最简单的,仅仅显示提示信息。2.MessageBox.Show("There are somethi....
分类:其他好文   时间:2014-09-03 12:41:56    阅读次数:212
JavaScript周报#184
This week’s JavaScript newsRead this issue on the Web|Issue ArchiveJavaScript WeeklyIssue 184June 6, 2014Editor:Peter CooperFeaturedCreate a TV Show T...
分类:编程语言   时间:2014-09-03 10:49:36    阅读次数:393
8.4 数组指针 函数指针
数组指针的含义:一个指针指向一个数组 ,这个指针+1就会加一个数组的长度。#include void show( char(*s)[10], int n){ while(n--) printf("%s\n",s++);}int main(){ char s[3][10] = {"hello","li...
分类:其他好文   时间:2014-09-02 21:20:05    阅读次数:250
C# MessageBox.Show每隔3秒自动关闭
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:其他好文   时间:2014-09-02 17:22:34    阅读次数:155
MySQL 操作(更新中……)
01 创建数据库 CREATE DATABASE `database_name`; 02 查看数据库 SHOW DATABASES; 03 选择数据库 USE `database_name`; 04 删除数据库 DROP DATABASE `database_nam...
分类:数据库   时间:2014-09-02 15:49:44    阅读次数:176
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!