using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication55{ class Program { static ...
分类:
其他好文 时间:
2015-08-05 21:41:19
阅读次数:
86
for(inti=1;i<=10;i++)for(inta=1;a<=10;a++){console.Write(a+"*"+i+"="+(a*i)+"/n");}console.WriteLine(); 7-200能被7整除的数 for (int i = 1; i <= 200; i++) ...
分类:
其他好文 时间:
2015-08-05 17:38:31
阅读次数:
100
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication45{ class Program { static ...
分类:
其他好文 时间:
2015-08-04 22:28:19
阅读次数:
91
主要实现的功能是点击完按钮以后,页面打印九九乘法表。使用的jquery的版本为1.10.2Insert title here点击显示
分类:
Web程序 时间:
2015-08-04 20:39:15
阅读次数:
799
-设置i变量declare @i int --设置j变量declare @j int --设置乘法表变量declare @chengfabiao varchar(1000)--给i,j,@chengfabiao赋初始值select @i=9,@j=1,@chengfabiao=''--使用whI.....
分类:
其他好文 时间:
2015-07-30 20:49:04
阅读次数:
185
1 2 3 4 5 韬睿科技 6 41 42 43 《西游记》《西游记》是一部神话小说,被中国人所喜爱44 描述了唐僧带领三个徒弟前往西天取经的故事。四人经过九九八十一难,终成正果。45 46 ...
分类:
其他好文 时间:
2015-07-29 11:49:05
阅读次数:
127
蒙差揭谛皈依旨谨记唐僧难数清金蝉遭贬第一难出胎几杀第二难满月抛江第三难寻亲报冤第四难出城逢虎第五难折从落坑第六难双叉岭上第七难两界山头第八难陡涧换马第九难夜被火烧第十难失却袈裟十一难收降八戒十二难黄风怪阻十三难请求灵吉十四难流沙难渡十五难收得沙僧十六难四圣显化十七难五庄观中十八难难活人参十九难贬退心...
分类:
其他好文 时间:
2015-07-15 22:43:19
阅读次数:
272
#!/bin/bash
#author:movekj.com
#date:2015.7.6
#description:print9*9table
#version:0.0.1
declare-iI=0
declare-iJ=0
declare-iN=0
forIin{0..8}
do
A[$I]=$[$I+1]
done
while[$J-le8]
do
forNin{0..8}
do
if[$N-lt$J]
then
echo-en"${A[$J]}X${A[$N]}=\033[31m$[${A[$J]}*..
分类:
其他好文 时间:
2015-07-06 20:05:27
阅读次数:
91
Java每日编程day2 第一题 package com.pcx.day2; /* * 九九乘法表 并逆序 */ public class JiuJiu { public static void main(String[] args...
分类:
编程语言 时间:
2015-07-01 23:26:59
阅读次数:
279
概念:首先,函数是一种特殊类型的数据,函数也是数据类型的一种,实际上函数也是一种对象,函数对象的内建构造器是Function();函数的几种创建方式:函数声明法:function sum(a,b){ return a+b; } ;函数文本标识法var sum = function(a,b){ ret...
分类:
其他好文 时间:
2015-06-26 12:37:34
阅读次数:
107