VB九九乘法表,php九九乘法表

時間 2022-02-07 01:20:04

1樓:板渡

(1)print"*"

意思是列印一個字元"*"。

(2)print:print

vb中,一行一句命令,如果你想多句命令一行,可用冒號隔開。

print省略引數就表示輸出一個空行。

簡單說,"print:print"就等於:

print

print

列印兩行空行。

(3)tab(n)函式。

用來將游標移到引數n指定的位置開始輸出資訊。tab(i*6),(i=1,2,3...),也就是在第6、12、24...

格才輸出表示式,這樣看起來就像一個列表一樣。如果你需要更要寬鬆一點,你寫成tab(i*7)也是可以的:)

樓主提供的程式**,語句有點混亂,執行也不正確.

請參考我提供的以下的乘法表(思路清晰):

private sub form_click()print tab(35); "乘法表"

dim se as string

for i = 1 to 9

for j = 1 to i

se = i & "x" & j & "=" & i * jprint tab((j - 1) * 9); se;

next j

print

next i

end sub

2樓:茂煙

for i = 1 to 9

for k=0 to 9-j

'先輸出一系列空格字元

text1.text =text1.text & space(9)next k

for j = i to 1 step -1'逆序輸出m=a*b 的形式

'用format函式定寬輸出

text1.text =text1.text & format(i * j,"##")+ "=" & format(i,"##") + "*" + format(j,"##")&" "

next j

for j = 1 to i

'順序輸出a*b=m形式

'同樣用format固定數字寬度

text1.text = text1.text & format(i,"##") & "*" & format(j,"##") & "=" & format(i * j,"##") &" "

next j

text1.text = text1.text + vba.vbcrlf

next i

3樓:匿名使用者

**給你,其它背景字型什麼的都是小問題

private sub command1_click()dim i as integer,j as integer

for i = 1 to 9for j = 1 to iprint j & "x " & i & "= " & i * j & vbtab;

next

print

next

end sub

4樓:

private sub command1_click()'text1.scrollbars = 1'設計時設定dim i as integer

dim t as variant

dim j as integer

text1.text = ""

for i = 1 to 9

for j = 1 to 9 - i

text1.text = text1.text & vbtabnext j

for j = i to 1 step -1text1.text = text1.text & cstr(i * j) & "=" & cstr(i) & "*" & cstr(j) & vbtab

next j

for j = 1 to i

text1.text = text1.text & cstr(j) & "*" & cstr(i) & "=" & cstr(i * j) & vbtab

next j

text1.text = text1.text + vbcrlfnext i

end sub

5樓:i多多問題多多

一個最簡單的99乘法表**:

private sub form_activate()i = 1

j = 1

for i = 1 to 9

for j = 1 to i

print i & "x" & j & "=" & i * j; tab(j * 10);

next

print

next

end sub

php九九乘法表

6樓:匿名使用者

其實很好理解的。

<?php

for ($i=1;$i<=9;$i++) //第一個迴圈,宣告變數i,迴圈9次,每次迴圈加上1

。for ($j=1;$j<=$i;$j++) echo "$i*$j=".$i*$j." "; //第二迴圈,宣告變數j,迴圈次數將取決於i的當前的值

echo "

\n"; //換行

} 很簡單吧,比如當i迴圈第5次時,j將迴圈5次,所以將顯示5*1=5 5*2=10 5*3=15 5*4=20 5*5=25依次推算~~~~

?>

7樓:匿名使用者

<?php

for ($i=1;$i<=9;$i++) //第一個迴圈,宣告變數i,迴圈9次,每次迴圈加上1

?>

最好每個for迴圈後加上{}。

8樓:匿名使用者

for ($i=1;$i<=9;$i++)}

vb九九乘法表

9樓:板渡

(1)print"*"

意思是列印一個字元"*"。

(2)print:print

vb中,一行一句命令,如果你想多句命令一行,可用冒號隔開。

print省略引數就表示輸出一個空行。

簡單說,"print:print"就等於:

print

print

列印兩行空行。

(3)tab(n)函式。

用來將游標移到引數n指定的位置開始輸出資訊。tab(i*6),(i=1,2,3...),也就是在第6、12、24...

格才輸出表示式,這樣看起來就像一個列表一樣。如果你需要更要寬鬆一點,你寫成tab(i*7)也是可以的:)

樓主提供的程式**,語句有點混亂,執行也不正確.

請參考我提供的以下的乘法表(思路清晰):

private sub form_click()print tab(35); "乘法表"

dim se as string

for i = 1 to 9

for j = 1 to i

se = i & "x" & j & "=" & i * jprint tab((j - 1) * 9); se;

next j

print

next i

end sub

10樓:線索記憶

04九九乘法表的記憶方法

11樓:匿名使用者

兩個print是輸出兩個空行,「print "*"」是輸出乘號,tab那個是插入換行符,就是相當於幾個空格,就是這樣

12樓:舒淼閔語蝶

private

subform1_click()

dimi

asinteger,j

asinteger

fori=1

to9forj=1

toiprint

tab(4*j);i*j

;next

jnext

iendsub

13樓:練雅韶香蝶

private

subform_click()

dimi

asinteger,jas

integer

fori=1

to9forj=i

to9print

i;"*";

j;"=";i*

j;"";next

jprint

next

iend

subfor巢狀迴圈,如有問題,請追問

在vb裡輸出九九乘法表

14樓:四舍**入

private sub form_click()for a = 1 to 9

for b = 1 to a

print b; "*"; a; "="; b * a;

next b

print

next a

end sub

15樓:匿名使用者

private sub form_click()for a = 1 to 9

for b = 1 to a

print b; "*"; a; "="; b * a;

next b

print

next a

end sub

16樓:

private sub command1_click()dim i, j, s

for i = 1 to 9

for j = 1 to i

s = s & j & "×" & i & "=" & iif(len(i * j) < 2, i * j & " ", i * j) & " "

next

s = s & vbcrlf

next

print s

end sub

vb 九九乘法表 20

17樓:板渡

(1)print"*"

意思是列印一個字元"*"。

(2)print:print

vb中,一行一句命令,如果你想多句命令一行,可用冒號隔開。

print省略引數就表示輸出一個空行。

簡單說,"print:print"就等於:

print

print

列印兩行空行。

(3)tab(n)函式。

用來將游標移到引數n指定的位置開始輸出資訊。tab(i*6),(i=1,2,3...),也就是在第6、12、24...

格才輸出表示式,這樣看起來就像一個列表一樣。如果你需要更要寬鬆一點,你寫成tab(i*7)也是可以的:)

樓主提供的程式**,語句有點混亂,執行也不正確.

請參考我提供的以下的乘法表(思路清晰):

private sub form_click()print tab(35); "乘法表"

dim se as string

for i = 1 to 9

for j = 1 to i

se = i & "x" & j & "=" & i * jprint tab((j - 1) * 9); se;

next j

print

next i

end sub

18樓:線索記憶

04九九乘法表的記憶方法

19樓:設計營地

private sub command1_click()

dim i as integer, j as integer, s as string

for i = 1 to 9

for j = 1 to i

s = " " & i & "x" & j & "=" & i * j & string(5, " ")

if j > 1 and i * j < 10 then s = s + string(1, " ")

label1.caption = label1.caption + s

next

label1.caption = label1.caption & vbcrlf + " "

next

end sub

緊急九九乘法表,緊急 九九乘法表

上左正三角九九乘法表 for i 1 to 9 for j 1 to i str j,1 str i,1 str j i,2 endfor endfor 上等腰三角九九乘法表 for i 1 to 9 space 8 9 i 2 for j 1 to i str j,1 str i,1 str j ...

c語言 九九乘法表,九九乘法表c語言程式設計是什麼

兩層迴圈就可以了。for i 1 i 9 i for j 1 j 9 j printf 3d i j printf 九九乘法表c語言程式設計是什麼?九九乘法表c語言程式設計內容如下 九九乘法表,左下三角。include int main int i 0,j 0 for i 1 i 10 i for j 1 ...

EXCEL九九乘法表的公式是什麼

佳木春生 在excel 中,不使用複雜公式製作九九乘法表 方法多種多樣,如果生成 上的九九表,a2的公式為 if row 1 然後向下填充到a10,再選定a2 a10,向右拖動到i列。 第一種方法 用公式 b1至j1,a2至a10依次輸入1到9,然後在b2處輸入公式 a2 b 1,將公式先向右拖拉複...