九九乘法表 int?main()
{
int?i,j;
for(i=1;i<=9;i++)
{
for(j=1;j<=i;j++)
printf("%d*%d=%d??",i,j,i*j);
printf("\n");
}
system("pause");
return?0;
} 打印菱形两角 *
*?*?
*?*?*
*...
分类:
其他好文 时间:
2015-08-05 22:49:39
阅读次数:
157
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
#!/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
publicclassdemo2{
publicstaticvoidmain(String[]args){
for(inti=1;i<=9;i++){
for(intj=1;j<=i;j++){
System.out.print(j+"*"+i+"="+j*i+"");
}
System.out.println("");
}
}
}1*1=11*2=22*2=41*3=32*3=63*3=91*4=42*4=83*4=124*4=161*5=52*5=103*5=154*5=205*5=25..
分类:
其他好文 时间:
2015-06-06 15:05:44
阅读次数:
155
1 js中的for循环,实心菱形,空心菱形,九九乘法表,等腰三角形 /* * 2 * * 3 * * * 4 * * 5 * 6 */ 7 8 //实心菱形 9 10 var count=3; ...
分类:
Web程序 时间:
2015-06-02 14:45:16
阅读次数:
142