码迷,mamicode.com
首页 >  
搜索关键字:乘法表    ( 980个结果
九九乘法表
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
乘法表的while2种方法,还有for的没写
以下是代码 ...
分类:其他好文   时间:2017-12-10 21:24:44    阅读次数:107
第二周学习总结
第二周学习总结 这一周根据学过的基础知识,应用于编程计算当中去,在编程的过程中加强对于基础知识的理解掌握。 #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
js for和while两种99乘法表
...
分类:Web程序   时间:2017-11-21 14:19:49    阅读次数:152
python04 while循环
九九乘法表: ...
分类:编程语言   时间:2017-11-21 01:15:54    阅读次数:244
980条   上一页 1 ... 42 43 44 45 46 ... 98 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!