学习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
173阅读
    方法一  #!/bin/bash  #  for I in {1..9}; do    for A in `seq 1 $I`; do     &n
原创 2012-06-27 12:39:07
644阅读
#!/bin/sh for ((i=1; i<=9; i++)) do         for ((j=1; j<=i; j++))         do  
原创 2014-11-27 14:51:01
751阅读
public class ChengFaiBiao { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub for( int r = 1;  r <= 9;  r++ ){ for( int n = 1;
原创 2015-03-23 22:46:05
194阅读
九九乘法表
原创 2021-01-12 09:35:23
554阅读
九九乘法表
原创 2021-07-31 15:44:38
157阅读
九九乘法表
原创 2021-11-16 17:45:49
252阅读
1点赞
package javatest;/** 外层控制行,里层控制列* 列数*行数*/public class Test44 {public static void main(String[] args) {// TODO A
原创 2022-08-24 17:00:09
50阅读
#include<iostream> using namespace std; int main() { for (int a = 1; a <= 9; a++) {  for (int b = 1; b <= a; b++) {   printf("%d*%d=%-3d", b, a, b * a);  }  cout &
原创 2023-05-22 17:30:09
78阅读
九九乘法表 for(int i = 1;i<10;i++){//
原创 2023-05-23 10:01:44
76阅读
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
131阅读
/** * @author HelloWorld * @create 2021-04-06-14:34 * @email 154
原创 2021-07-12 14:33:28
156阅读
这边提供了两种格式可自行选择#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
291阅读
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
112阅读
第四章         阶段项目(一) (1)后台代码编写: int sum = 0;         for (int i = 1; i<=9; i++)       &nb
原创 2010-06-01 16:29:09
649阅读
2评论
  #include "iostream.h" int main() {     for (int i=1;i<=9;i++)     {     &n
原创 2010-10-10 18:14:44
517阅读
1点赞
2评论
public class demo2 {     public static void main(String[] args) {         for (int i&nbsp
原创 2015-06-06 13:43:13
813阅读
九九乘法表Python的实现
原创 2016-05-25 10:07:53
702阅读
本文采用Python实现打印九九乘法表的功能
原创 2017-11-21 23:39:10
799阅读
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
563阅读
  • 1
  • 2
  • 3
  • 4
  • 5