Search results for '구구단'

mssql - while문을 이용한 구구단

2015. 3. 18. 11:11

-----------구구단 전체--------------
Declare 
@a		int, 
@b		int, 
@99dan	int

SET @b	= 2
SET @99dan = 2

Print '구구단 시작'

While @99dan < 10
Begin
	set @a = 1

	while @a < 10
	begin
		print str(@b) + ' x ' + str(@a) + ' = ' + str(@b*@a)
		set @a = @a + 1
	end

	print ''
	SET @99dan = @99dan + 1
	SET @b = @b + 1
End 

Print '구구단 끝'


텍사스양 일상에서

asp 구구단..

2009. 2. 9. 17:37


 response.write "<table border='1'><tr>"
 
 for i = 1 to 9

 response.write "<td>"
 
  for j = 1 to 9
   response.write  i & "*" & j & " = " & i * j & "&nbsp;<br>"
  next
 
 
  If i = 3 or i = 6 then
   response.write "</td><tr>"
  Else
   response.write "</td>"
  end if
 
 next
 
  response.write "</tr></table>"

'===============================================
' 이 간단 구문도 왜 이리 헷갈리는가..

텍사스양 일상에서