学习VBAVBA 就是 (Visual basic for Application) 用的比较多的是在Excel中处理数据,可以方便快捷地使用编程方式来对数据进行操作。VBA 数据类型IntegerPublic Sub fun() Dim num As Integer, total As Integer ' 九九乘法表 For i = 1 To 9
转载 2023-10-16 17:54:43
100阅读
    方法一  #!/bin/bash  #  for I in {1..9}; do    for A in `seq 1 $I`; do     &n
原创 2012-06-27 12:39:07
592阅读
#!/bin/sh for&nbsp;((i=1;&nbsp;i<=9;&nbsp;i++)) do &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for&nbsp;((j=1;&nbsp;j<=i;&nbsp;j++)) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;do &nbsp;
原创 2014-11-27 14:51:01
655阅读
public class ChengFaiBiao { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub for( int r = 1; &nbsp;r <= 9; &nbsp;r++ ){ for( int n = 1;
原创 2015-03-23 22:46:05
186阅读
九九乘法表
原创 2021-01-12 09:35:23
532阅读
九九乘法表
原创 2021-07-31 15:44:38
150阅读
九九乘法表
原创 2021-11-16 17:45:49
232阅读
1点赞
package javatest;/** 外层控制行,里层控制列* 列数*行数*/public class Test44 {public static void main(String[] args) {// TODO A
原创 2022-08-24 17:00:09
42阅读
#include<iostream> using namespace std; int main() { for (int a = 1; a <= 9; a++) { &nbsp;for (int b = 1; b <= a; b++) { &nbsp; printf("%d*%d=%-3d", b, a, b * a); &nbsp;} &nbsp;cout &
原创 2023-05-22 17:30:09
32阅读
九九乘法表 for(int i = 1;i<10;i++){//
原创 2023-05-23 10:01:44
64阅读
int main() { int a = 0; for (a = 1; a <= 9; a++) { int b = 1; for (b = 1; b <= a; b++) { printf(" %d*%d=%d", a, b, a * b); } printf("\n"); } return 0; }
原创 2023-11-04 17:55:28
104阅读
这边提供了两种格式可自行选择#include<stdio.h>int main(){ int n = 1; int m = 1; int z = 0; for (n = 1;n <= 9;n++) { for (m = 1;m <= n;m++) { printf("%dX%d=%-2d ", m, n, m * n); } p
原创 精选 2022-11-24 12:51:55
288阅读
main.cpp#include<iostream.h>#include "prow.h"void main(){ fun1(); cout<<'\n'; cout<<'\n'; fun2(); cout<<'\n'; cout<<'\n'; fun3();}por1.cpp#include<i...
原创 2019-09-26 17:32:05
107阅读
/** * @author HelloWorld * @create 2021-04-06-14:34 * @email 154
原创 2021-07-12 14:33:28
147阅读
第四章&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;阶段项目(一) (1)后台代码编写: int sum = 0; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for (int i = 1; i<=9; i++) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb
原创 2010-06-01 16:29:09
598阅读
2评论
&nbsp; #include&nbsp;"iostream.h"&nbsp;int&nbsp;main()&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for&nbsp;(int&nbsp;i=1;i<=9;i++)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n
原创 2010-10-10 18:14:44
477阅读
1点赞
2评论
public&nbsp;class&nbsp;demo2&nbsp;{ &nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;static&nbsp;void&nbsp;main(String[]&nbsp;args)&nbsp;{ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for&nbsp;(int&nbsp;i&nbsp
原创 2015-06-06 13:43:13
727阅读
九九乘法表的Python的实现
原创 2016-05-25 10:07:53
702阅读
本文采用Python实现打印九九乘法表的功能
原创 2017-11-21 23:39:10
770阅读
1点赞
#!/bin/bashfor((i=1;i<=9;i++))dofor((j=1;j<=9;j++))do[$j-le$i]&&echo-n“${i}*${j}=$((i*j))”doneecho""done~
原创 2021-01-09 10:06:05
543阅读
  • 1
  • 2
  • 3
  • 4
  • 5