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
先设置每个格子的样式: 使用JavaScript生成表格: ...
分类:
其他好文 时间:
2017-12-14 00:00:15
阅读次数:
219
循环实现九九乘法表 列表推导式实现九九乘法表 ...
分类:
编程语言 时间:
2017-12-12 21:49:38
阅读次数:
145
using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace ConsoleApplication1{ class Program { static void Main(str ...
第二周学习总结 这一周根据学过的基础知识,应用于编程计算当中去,在编程的过程中加强对于基础知识的理解掌握。 #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
一、输出如下图形: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