码迷,mamicode.com
首页 >  
搜索关键字:九九乘法表    ( 565个结果
九九乘法表
package util; public class Demo{ public static void main(String[] args) { int x,y; for(x = 0;x <= 9; x++){//外循环控制行 for(y = 1;y <= x; y++){//内循环控制列 ... ...
分类:其他好文   时间:2017-12-17 18:05:55    阅读次数:136
for循环生成九九乘法表
先设置每个格子的样式: 使用JavaScript生成表格: ...
分类:其他好文   时间:2017-12-14 00:00:15    阅读次数:219
********跟兄弟连学python*****九九乘法表
循环实现九九乘法表 列表推导式实现九九乘法表 ...
分类:编程语言   时间:2017-12-12 21:49:38    阅读次数:145
关于使用C#编写 九九乘法表
using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace ConsoleApplication1{ class Program { static void Main(str ...
分类:Windows程序   时间:2017-12-10 22:53:23    阅读次数:273
第二周学习总结
第二周学习总结 这一周根据学过的基础知识,应用于编程计算当中去,在编程的过程中加强对于基础知识的理解掌握。 #include "stdio.h" void main() { double a,b; char c; printf("请输入计算式子,如3+2\n"); scanf("%lf%c%lf", ...
分类:其他好文   时间:2017-12-04 13:13:35    阅读次数:185
for语句的强化(水仙花,九九乘法表,回文数等)
一、输出如下图形:11 21 2 31 2 3 41 2 3 4 51 2 3 4 5 61 2 3 4 5 6 71 2 3 4 5 6 7 81 2 3 4 5 6 7 8 9 public class five { public static void main(String[] args) ...
分类:其他好文   时间:2017-12-04 00:11:20    阅读次数:159
九九乘法表
以下代码实现用Python语言打印九九乘法表的功能foriinrange(1,10):forjinrange(1,i+1):result=i*jprint("%d*%d=%2d"%(i,j,result),end="")print()
分类:其他好文   时间:2017-11-22 00:54:59    阅读次数:205
python04 while循环
九九乘法表: ...
分类:编程语言   时间:2017-11-21 01:15:54    阅读次数:244
javascript入门
入门程序 浏览器对话框 编程语言基础 程序结构 案列(运算) 循环结构 九九乘法表 函数操作 字符串操作 数学操作 时间操作 计时函数 活动倒计时 ...
分类:编程语言   时间:2017-11-19 01:59:19    阅读次数:211
打印九九乘法表的两种方法
#1.for循环 rows,cols = xrange(1,10),xrange(1,10) row,col = 1,1 for row in rows: for col in cols: if col <= row: print '%d*%d=%d\t' % (col,row,col*row), ... ...
分类:其他好文   时间:2017-11-15 23:30:41    阅读次数:158
565条   上一页 1 ... 24 25 26 27 28 ... 57 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!