2 tbasic tbasic tbasic 1 tbasic tbasic N88-BASICQuick BASIC Windows Visual Basic Quick BASIC tbasic 1.1 (pixel) tbasic Windows

Size: px
Start display at page:

Download "2 tbasic tbasic tbasic 1 tbasic tbasic N88-BASICQuick BASIC Windows Visual Basic Quick BASIC tbasic 1.1 (pixel) tbasic 800 600 800 600 Windows 800 600"

Transcription

1 Tiny Basic for Windows tbasic.org * 1 [ ] Tiny Basic for Windows 1 tbasic tbasic tbasic Cls PSet Line Circle Paint GLocate GPrint *1 1

2 2 tbasic tbasic tbasic 1 tbasic tbasic N88-BASICQuick BASIC Windows Visual Basic Quick BASIC tbasic 1.1 (pixel) tbasic Windows Windows

3 3 1.2 tbasic Print tbasic tbasic tbasic tbasic GScreen GScreen Graph Screen GScreen() 1.1 ( ). GScreen(600,400)

4 = ( ) x y (x, y) 0 (0, 0) (599, 399) OS (x, y) (0, 0) ( 3, 0) (3, 0) y = f (x) *2 3 x 3 (x, f (x)) (100x f (x) + 200) Window Window *2 ( 3, 2) (3, 2)

5 5 Window (x0,y0)-(x1,y1) (x0,y0)(x1,y1) x0<x1y0<y1 GScreen Window (x0,y0) (x1,y1) Window (-3,-2)-(3,2) *3 3 x 3 (x, f (x)) (x, f (x)) y (x, y) y MathGraph tbasic BASIC MathGraph MathGraph Off GScreen(600,400) Window(-3,-2)-(3,2) 3 x 3 (x, f (x)) (x, f (x)) 1.4 *3 GScreen(600,400) 3 : 2

6 6 CLS PSet Line Circle Paint GLocate GPrint tbasic 1.5 CloseGScreen tbasic CloseGScreen CloseGScreen CloseGScreen GScreen() GScreen tbasic GScreen

7 7 * 4 tbasic 1.6 tbasic (1) Alt+PrintScreen tbasic PC *4 tbasic

8 8 (2) tbasic tbasic SavePicture jpgpnggif bmp tbasic BASIC sample enseki.tbt Alt+PrintScreen SavePicture BASIC 2 tbasic 2.1 Paint

9 9 Cls 2 Cls 2 GBackColor GForeColor GBorderColor html : : : : 0 : Black 1 : Navy 2 : Green 3 : Teal 4 : Maroon 5 : Purple 6 : Olive 7 : Silver 8 : Gray 9 : Blue 10 : Lime 11 : Cyan(Aqua) 12 : Red 13 : Fuchsia 14 : Yellow 15 : White GBackColor=0 GBackColor="Black" html html RGB 16 FFCCAA GBackColor="#FFCCAA"

10 (1) (2) (3) (4) html RGB ( 3, 2)(3, 2) GBackColor="Navy" GForeColor="Cyan" GScreen(600,400) Window (-3,-2)-(3,2) 2.3 CLS PSet Line Circle Paint GLocate GPrint PSetLine Circle RND *5 (0, 0) (1, 1) *5 RND 0 RND < 1

11 11 GBackColor="Black" GForeColor="White" Window (0,0)-(1,1) 1000 PSet PSet Point Set PSet (x,y) *6 PSet (Rnd,Rnd) 1000 For GBackColor="Black" GForeColor="White" Window (0,0)-(1,1) For i=1 to 1000 PSet (Rnd,Rnd) GForeColor 3 j=((i-1) mod 3)+1 i=1,2,3,4,5,6,... j=1,2,3,1,2,3,... *6 PSet (x,y), c c

12 12 GForeColor GForeColor Sleep Dim CLR$(3) CLR$(1)="Yellow" CLR$(2)="Red" CLR$(3)="Cyan" GBackColor="Black" GForeColor="White" Window (0,0)-(1,1) For i=1 to 1000 Sleep(10) C$ = CLR$(((i-1) mod 3)+1) : 1,2,3 GForeColor= C$ PSet (Rnd,Rnd) C$ = CLR$(((i-1) mod 3)+1) i = 1, 2, 3,... C$ Yellow Red Cyan Line Line Line (x1,y1)-(x2,y2) (x1,y1) (x2,y2) Dim CLR$(6) CLR$(1)="White" : CLR$(2)="Green": CLR$(3)="Blue" CLR$(4)="Yellow": CLR$(5)="Red" : CLR$(6)="Cyan" BackColor="Black" ForeColor="White" Window (0,0)-(1,1) For i=1 to 100 Sleep(10) C$ = CLR$(((i-1) mod 6)+1) : 1,2,...,6 GForeColor= C$ Line (Rnd,Rnd)-(Rnd,Rnd)

13 13 CLR$(1)="White" : CLR$(2)="Green": CLR$(3)="Blue" CLR$(4)="Yellow": CLR$(5)="Red" : CLR$(6)="Cyan" : C$ = CLR$(((i-1) mod 6)+1) 6 C$ Line Line (x1,y1)-(x2,y2),,b (x1,y1) (x2,y2) * 7 Line B Dim CLR$(6) CLR$(1)="White" : CLR$(2)="Green": CLR$(3)="Blue" CLR$(4)="Yellow": CLR$(5)="Red" : CLR$(6)="Cyan" BackColor="Black" ForeColor="White" Window (0,0)-(1,1) For i=1 to 100 Sleep(10) C$ = CLR$(((i-1) mod 6)+1) : 1,2,...,6 GForeColor= C$ Line (Rnd,Rnd)-(Rnd,Rnd),,B Circle Circle Circle (x,y),r (x,y) r Circle (x,y),r,,,,,f (x,y) r *7 Line (x1,y1)-(x2,y2),,bf (x1,y1) (x2,y2)

14 14 html 20 Randomize * Dim CLR$(2) GBackColor="Black": GForeColor="White" : Window (0,0)-(1,1) Randomize For i=1 to 20 X=Rnd:Y=Rnd:R0=Rnd/80: CN=Int(Rnd * 3) For j=10 to 0 step -1 CLR$(CN)="FF" CLR$((CN+1) mod 3)=Right$("0"+Hex$(j*17),2) CLR$((CN+2) mod 3)=CLR$((CN+1) mod 3) C$="#"+CLR$(0)+CLR$(1)+CLR$(2) R=R0*(j+1) GForeColor= C$ Circle (x,y),r,,,,,f Next j CLR$(0)CLR$(1)CLR$(2) C$="#"+CLR$(0)+CLR$(1)+CLR$(2) html C$0,1,2 CN #FFAAAA, #FF9999,..., #FF1111, #FF0000 #AAFFAA, #99FF99,..., #11FF11, #00FF00 #AAAAFF, #9999FF,..., #1111FF, #0000FF C$GForeColor Hex$(j*17) Hex$16 17 = = 11(16 ) j=1,...,9 Hex$(j*17) 16 jj j=10 AA j=0 0 0 Right$("0"+Hex$(j*17),2) j=0,...,10 16 jj html *8 Randomize

15 CloseGScreen 3 (1) Cls (2) PSet (3) Line (4) Circle (5) Paint (6) GLocate GPrint

16 Cls Cls Clear Screen Cls 2 *9 Cls 2 Cls 2 GScreen GScreen GBackColor Cls 2 Cls 2 GBackColor Cls 2 Dim CLR$(2) For i=1 to 10 CN=Int(Rnd * 3) For j=15 to 0 step -1 Sleep(100) CLR$(CN)="FF" CLR$((CN+1) mod 3)=Right$("0"+Hex$(j*17),2) CLR$((CN+2) mod 3)=CLR$((CN+1) mod 3) C$="#"+CLR$(0)+CLR$(1)+CLR$(2) GBackColor= C$ Cls 2 Next j CLR$(0)CLR$(1)CLR$(2) CN=Int(Rnd * 3) 0,1,2 CLR$(CN)="FF" CLR$(CN) 2 CLR$((CN+1) mod 3) CLR$((CN+2) mod 3) #FFFFFF, #FFEEEE,..., #FF1111, #FF0000 #FFFFFF, #EEFFEE,..., #11FF11, #00FF00 #FFFFFF, #EEEEFF,..., #1111FF, #0000FF C$="#"+CLR$(0)+CLR$(1)+CLR$(2) html C$ *9 ClsCls 1 Cls 2 Cls 3

17 PSet PSet Point Set () PSet (x,y) * 10 (0,0) (1,1) 01 GBackColor = "Black" 02 GForeColor = "White" Window(0,0)-(1,1) For i=1 to x = RND 08 y = RND 09 If (xˆ2+yˆ2 <= 1) and ((x-1)ˆ2+(y-1)ˆ2 <=1) then 10 PSet (x,y) 11 if (0,0) (1,1) x, y 9 (xˆ2+yˆ2 <= 1) and ((x-1)ˆ2+(y-1)ˆ2 <=1) (0,0) (1,1) (x,y) 10 (x,y) html 16 0, 1, 2,..., D, E, F Hex$(16*RND) * 11 *10 C PSet (x,y),c GForeColor *11 x =16*RND 0 x < 16 x Hex$(x) 16

18 18 C$="#"+Hex$(16*RND)+Hex$(16*RND)+Hex$(16*RND)+Hex$(16*RND)+Hex$(16*RND)+Hex$(16*RND) C$ html GBackColor="Black" Window(0,0)-(1,1) For i=1 to x = RND y = RND If (xˆ2+yˆ2 <= 1) and ((x-1)ˆ2+(y-1)ˆ2 <=1) then C$="#"+Hex$(16*RND)+Hex$(16*RND)+Hex$(16*RND)+Hex$(16*RND)+Hex$(16*RND)+Hex$(16*RND) ForeColor = C$ PSet (x,y) if 3.3 Line Line Line (x1,y1)-(x2,y2) (x1,y1) (x2,y2) Line (x1,y1)-(x2,y2),,b (x1,y1) (x2,y2) B Box Line (x1,y1)-(x2,y2),,bf (x1,y1) (x2,y2) BF Box Fill GForeColor * 12 *12 C Line (x1,y1)-(x2,y2),c (x1,y1) (x2,y2) C

19 19 Line 3.1 (). GBackColor="Black" Window (-2,-2)-(2,2) GForeColor = "Cyan" Line (-2,0)-(2,0) : x Line (0,-2)-(0,2) : y GForeColor = "White" xy n 3.2 (). n n=5 GBackColor="Black" Window (-2,-2)-(2,2) GForeColor = "Cyan" Line (-2,0)-(2,0) : x Line (0,-2)-(0,2) : y GForeColor = "#555555" Circle(0,0),1 ForeColor = "White" For i=0 to n-1 x0=cos(2*pi*i/n) y0=sin(2*pi*i/n) x1=cos(2*pi*(i+1)/n) y1=sin(2*pi*(i+1)/n) Line (x0,y0)-(x1,y1) n GForeColor = "#555555" 2*Pi n (x,y) Cos(2*Pi*i/n),Sin(2*Pi*i/n) Line

20 Circle Circle Circle (x,y),r (x,y) r 16 GForeColor GForeColor 3.3 (). GBackColor="Black" Window (-2,-2)-(2,2) GForeColor = "White" For i=0 to 2 x=cos(2*pi*i/3+pi/2)*0.6 y=sin(2*pi*i/3+pi/2)*0.6 Circle(x,y),1 Window (-2,-2)-(2,2) (0, 0) 4 1 (0, 0) 0.6 2π 3 2π 3 2π i/3 i = 0 x y π/2 x=cos(2*pi*i/3+pi/2)*0.6 y=sin(2*pi*i/3+pi/2)*0.6 (x, y)

21 Paint Paint Paint (x,y) (x,y) GBorderColor GForeColor * (). GBackColor="Black" Window (-2,-2)-(2,2) GForeColor = "White" For i=1 to 3 x=cos(2*pi*i/3+pi/2)*0.6 y=sin(2*pi*i/3+pi/2)*0.6 Circle(x,y),1 GBorderColor = "White" GForeColor ="#FF0000": Paint (Cos(Pi/2)*0.8,Sin(Pi/2)*0.8) GForeColor ="#00FF00": Paint (Cos(2*Pi/3+Pi/2)*0.8,Sin(2*Pi/3+Pi/2)*0.8) GForeColor ="#0000FF": Paint (Cos(2*Pi*2/3+Pi/2)*0.8,Sin(2*Pi*2/3+Pi/2)*0.8) GForeColor ="#FF00FF": Paint (Cos(Pi/3)*0.6,Sin(Pi/3)*0.6) GForeColor ="#FFFF00": Paint (Cos(2*Pi/3+Pi/3)*0.6,Sin(2*Pi/3+Pi/3)*0.6) GForeColor ="#00FFFF": Paint (Cos(2*Pi*2/3+Pi/3)*0.6,Sin(2*Pi*2/3+Pi/3)*0.6) GForeColor ="#FFFFFF": Paint (0,0) html "#FF0000" "#00FF00" "#0000FF" "#FF0000" "#00FF00""#FFFF00" "#FFFFFF" BorderColor *13

22 GLocate GPrint GPrint Graph Print GPrint GLocate Graph Locate GLocate (x,y) GPrint GForeColor = "Cyan" GLocate (-1.5,-1.5) GPrint " ()" "#FFFF00""#00FFFF""#00FF00"AND 3.5 (). GBackColor="White" Window (-2,-2)-(2,2) GForeColor = "Black" For i=1 to 3 x=cos(2*pi*i/3+pi/2)*0.6 y=sin(2*pi*i/3+pi/2)*0.6 Circle(x,y),1 GBorderColor = "Black" GForeColor ="#FFFF00": Paint (Cos(Pi/2)*0.8,Sin(Pi/2)*0.8) GForeColor ="#00FFFF": Paint (Cos(2*Pi/3+Pi/2)*0.8,Sin(2*Pi/3+Pi/2)*0.8) GForeColor ="#FF00FF": Paint (Cos(2*Pi*2/3+Pi/2)*0.8,Sin(2*Pi*2/3+Pi/2)*0.8) GForeColor ="#FF0000": Paint (Cos(Pi/3)*0.6,Sin(Pi/3)*0.6) GForeColor ="#00FF00": Paint (Cos(2*Pi/3+Pi/3)*0.6,Sin(2*Pi/3+Pi/3)*0.6) GForeColor ="#0000FF": Paint (Cos(2*Pi*2/3+Pi/3)*0.6,Sin(2*Pi*2/3+Pi/3)*0.6) GForeColor ="#000000": Paint (0,0) GForeColor = "Navy" GLocate (-1.5,-1.5) GPrint " ()"

23 23 4 y = f (x) x = x(t) y = y(t) 4.1 GScreen 1 : 1 2 : 1 Window * 14 x y 4.1 (). GBackColor="Navy" Window (-10,-10)-(10,10) GForeColor = "Cyan" Line (-10,0)-(10,0) : x Line (0,-10)-(0,10) : y GForeColor = "White" *14

24 pixcel xy y = f (x) x x (x, f (x)) y = sin(x) PSet 4.2 (sin(x) ). GBackColor = "Navy" Window (-10,-10)-(10,10) GForeColor = "Cyan" Line (-10,0)-(10,0) Line (0,-10)-(0,10) GForeColor = "White" For i=0 to 100 x = *i/10 y = Sin(x) PSet(x,y) 101 x = x x = i/10 y = sin(x) (x, y) * *15

25 * x 1, x 2 (x 1, f (x 1 )) (x 2, f (x 2 )) PSet Line (sin(x) ). GBackColor = "Navy" Window (-10,-10)-(10,10) GForeColor = "Cyan" Line (-10,0)-(10,0) Line (0,-10)-(0,10) GForeColor = "White" For i=0 to x1 = *i/10 y1 = Sin(x1) x2 = *(i+1)/10 y2 = Sin(x2) Line (x1,y1)-(x2,y2) x = 10 x = /100 = 2/10 i = 0 (x 1, x 2 ) = ( 10, /10)... i = (x 1, x 2 ) = ( /10, /10) = (10 2/10, 20) Line *16 π/2 tan(x)

26 For For i=0 to 20-1 For i=0 to 50-1 x1 = *i/2 x1 = *i/5 y1 = Sin(x1) y1 = Sin(x1) x2 = *(i+1)/2 x2 = *(i+1)/5 y2 = Sin(x2) y2 = Sin(x2) Line (x1,y1)-(x2,y2) Line (x1,y1)-(x2,y2)

27 27 tan(x) (tan(x) ). GBackColor = "Navy" Window (-10,-10)-(10,10) GForeColor = "Cyan" Line (-10,0)-(10,0) Line (0,-10)-(0,10) GForeColor = "White" For i=0 to x1 = *i/10 y1 = Tan(x1) x2 = *(i+1)/10 y2 = Tan(x2) Line (x1,y1)-(x2,y2) tan(x)..., π/2, π/2, 3π/2, * *17 PC

28 * 18 * 19 * 20 GWW GWH XLEFT x XRIGHT x YBOTTOM y YTOP y Function f(x) NLINES *18 *19 BASIC *20

29 () GWW = 300 GWH = 300 XLEFT = -10 XRIGHT = 10 YBOTTOM = -10 NLINES = 100 Function f(x) f = Sin(x) Function GBackColor = "Navy" GScreen(GWW,GWH) YTOP = GWH*(XRIGHT-XLEFT)/GWW + YBOTTOM Window (XLEFT,YBOTTOM)-(XRIGHT,YTOP) GForeColor = "Cyan" Line (XRIGHT,0)-(XLEFT,0) Line (0,YBOTTOM)-(0,YTOP) GForeColor = "White" For i=0 to NLINES-1 x1 = XLEFT + (XRIGHT-XLEFT)*i/NLINES y1 = f(x1) x2 = XLEFT + (XRIGHT-XLEFT)*(i+1)/NLINES y2 = f(x2) Line (x1,y1)-(x2,y2) [----] [] Function f = * t f (x) x(t)y(t) TSTATRTt TENDt Function x(t) Function y(t) *21 f (x) = sin(x) f = sin(x)

30 () GWW = 300 GWH = 300 XLEFT = -10 XRIGHT = 10 YBOTTOM = -10 TSTART = 0 TEND = 2*Pi NLINES = 200 Function x(t) x = 8*Sin(4*t) Function Function y(t) y = 5*Sin(5*t) Function BackColor = "Navy" GScreen(GWW,GWH) YTOP = GWH*(XRIGHT-XLEFT)/GWW + YBOTTOM Window (XLEFT,YBOTTOM)-(XRIGHT,YTOP) ForeColor = "Cyan" Line (XRIGHT,0)-(XLEFT,0) Line (0,YBOTTOM)-(0,YTOP) ForeColor = "White" For i=0 to NLINES-1 t1 = TSTART + (TEND-TSTART)*i/NLINES x1 = x(t1) y1 = y(t1) t2 = TSTART + (TEND-TSTART)*(i+1)/NLINES x2 = x(t2) y2 = y(t2) Line (x1,y1)-(x2,y2) Function x(t)function y(t) x = 8 sin(4t) y = 5 sin(5t) x = 4 (1 + cos(t)) cos(2t) y = 4 (1 + cos(t)) sin(2t)

31 r = f (θ) r = x 2 + y 2 t = θ x = f (t) cos(t)y = f (t) sin(t) Function r(s) r=5*(1+cos(s)) Function Function x(t) x=r(t)*cos(t) Function Function y(t) y=r(t)*sin(t) Function Function r(s)t r = s r = cos(2s) xy 4.6 PC tbasic

untitled

untitled Web HTML(Hyper-Text Markup Language) Web HTML () Web / Web -1 Web -2 Web -3 Web -4 Web Web -5 White Black Red Green Blue Yellow Purple Aqua Maroon Navy Olive Teal Gray Silver Lime Fuchsia Snow Linen Bisque

More information

N88 BASIC 0.3 C: My Documents 0.6: 0.3: (R) (G) : enterreturn : (F) BA- SIC.bas 0.8: (V) 0.9: 0.5:

N88 BASIC 0.3 C: My Documents 0.6: 0.3: (R) (G) : enterreturn : (F) BA- SIC.bas 0.8: (V) 0.9: 0.5: BASIC 20 4 10 0 N88 Basic 1 0.0 N88 Basic..................................... 1 0.1............................................... 3 1 4 2 5 3 6 4 7 5 10 6 13 7 14 0 N88 Basic 0.0 N88 Basic 0.1: N88Basic

More information

Tiny Basic for Windows 2 1 Tiny Basic for Windows Tiny Basic for Windows tbasic tbasic BASIC BASIC Visual Basic BASIC BASIC BASIC tbasic Help BASIC tb

Tiny Basic for Windows 2 1 Tiny Basic for Windows Tiny Basic for Windows tbasic tbasic BASIC BASIC Visual Basic BASIC BASIC BASIC tbasic Help BASIC tb Tiny Basic for Windows tbasic.org * 1 Tiny Basic for Windows Windows Vista78 BASIC Windows BASIC Tiny 1 Ver.1.23 Tiny Basic for Windows http://www.tbasic.org 1 Tiny Basic for Windows 2 2 Tiny Basic for

More information

★結果★ 藤沢市長杯 掲示用ヒート表

★結果★ 藤沢市長杯 掲示用ヒート表 AA 35 Round 1 8 4 Round 2 28 16 SEMI FINAL H1 H5 H1 H1 Red 12802015 1 Red 12802109 1 1-1 Red 12802015 2 1-1 Red 12702346 White 12800232 2 White 12702406 3 3-1 White 12702346 1 3-1 White 12802109 Yellow

More information

第32回新春波乗り大会2018

第32回新春波乗り大会2018 AA 32 Round 1 4 SEMI FINAL 2 20 8 FINAL H1 H1 H1 Red 12701793 1 1-1 Red 12701793 2 1-1 Red 11800623 White 12900058 4 3-1 White 12402115 4 2-1 White 12402209 Yellow 11603976 3 2-2 Yellow 12301534 3 1-2

More information

掲示用ヒート表 第34回 藤沢市長杯 2017

掲示用ヒート表 第34回 藤沢市長杯 2017 34 8 4 2 Round 1 Round 2 SEMI FINAL 30 16 8 H1 H5 H1 H1 Red 12401821 2 Red 12601360 2 1-1 Red 12501915 1 1-1 Red 12501915 4 White 12900051 4 White 12600138 3 3-1 White 12802412 2 3-1 White 12801091 1 Yellow

More information

Appendix A BASIC BASIC Beginner s All-purpose Symbolic Instruction Code FORTRAN COBOL C JAVA PASCAL (NEC N88-BASIC Windows BASIC (1) (2) ( ) BASIC BAS

Appendix A BASIC BASIC Beginner s All-purpose Symbolic Instruction Code FORTRAN COBOL C JAVA PASCAL (NEC N88-BASIC Windows BASIC (1) (2) ( ) BASIC BAS Appendix A BASIC BASIC Beginner s All-purpose Symbolic Instruction Code FORTRAN COBOL C JAVA PASCAL (NEC N88-BASIC Windows BASIC (1 (2 ( BASIC BASIC download TUTORIAL.PDF http://hp.vector.co.jp/authors/va008683/

More information

TEAM WEAR 1

TEAM WEAR 1 TEAM WEAR 1 2 TEAM WEAR BUSINESS WEAR 3 4 5 6 7 11 13 28 29 41 43 45 INDEX 3 4 5 6 z x c v b n 7 1 m 0, 2 3 4 5. z x c v b n m,. 0 1 2 3 4 5 8 z x c v b n m,. 9 1 0 2 3 4 5 z x c v b n m,. 0 1 2 3 4 5

More information

コンピュータ概論

コンピュータ概論 4.1 For Check Point 1. For 2. 4.1.1 For (For) For = To Step (Next) 4.1.1 Next 4.1.1 4.1.2 1 i 10 For Next Cells(i,1) Cells(1, 1) Cells(2, 1) Cells(10, 1) 4.1.2 50 1. 2 1 10 3. 0 360 10 sin() 4.1.2 For

More information

27短01研01斉藤.indd

27短01研01斉藤.indd WordPress を用いたホームページ作成 Making a homepage using the WordPress 斎藤敏之 Toshiyuki SAITOH キーワード 1. はじめに WordPress WordPress PC PC WordPress HTML CSS HTML CSS WordPress 2.HTMLとCSSの基礎 HTML CSS World Wide Web Consortium

More information

untitled

untitled 2005 HP -1-2005 8 29 30 HP 1 ( ) 1. Web 2. HTML HTML 1 PDF HTML 1 Web HTML http://www.media.ritsumei.ac.jp/kodais2005 2 2.1 WWW HTML Hyper Text Markup Language) HTML Web HTML Internet Explorer http://www.ritsumei.ac.jp

More information

1/2

1/2 札幌学院大学社会情報学部 AO 入試課題用テキスト (3) 1 札幌学院大学社会情報学部 AO 入試課題用テキスト HTML の基礎知識 (3) 1. スタイル指定 フォントの大きさや種類 行間 ページ上のレイアウトなどを文書の スタイル と呼び このスタイルを指定するためのデータを スタイルシート と呼ぶ 以下では CSS(Cascading Style Sheets) と呼ばれるスタイルシート言語を使用する

More information

GraphicsWithPlotFull.nb Plot[{( 1), ( ),...}, {( ), ( ), ( )}] Plot Plot Cos x Sin x, x, 5 Π, 5 Π, AxesLabel x, y x 1 Plot AxesLabel

GraphicsWithPlotFull.nb Plot[{( 1), ( ),...}, {( ), ( ), ( )}] Plot Plot Cos x Sin x, x, 5 Π, 5 Π, AxesLabel x, y x 1 Plot AxesLabel http://yktlab.cis.k.hosei.ac.jp/wiki/ 1(Plot) f x x x 1 1 x x ( )[( 1)_, ( )_, ( 3)_,...]=( ) Plot Plot f x, x, 5, 3 15 10 5 Plot[( ), {( ), ( ), ( )}] D g x x 3 x 3 Plot f x, g x, x, 10, 8 00 100 10 5

More information

1 matplotlib matplotlib Python matplotlib numpy matplotlib Installing A 2 pyplot matplotlib 1 matplotlib.pyplot matplotlib.pyplot plt import import nu

1 matplotlib matplotlib Python matplotlib numpy matplotlib Installing A 2 pyplot matplotlib 1 matplotlib.pyplot matplotlib.pyplot plt import import nu Python Matplotlib 2016 ver.0.06 matplotlib python 2 3 (ffmpeg ) Excel matplotlib matplotlib doc PDF 2,800 python matplotlib matplotlib matplotlib Gallery Matplotlib Examples 1 matplotlib 2 2 pyplot 2 2.1

More information

Windows (L): D:\jyugyou\ D:\jyugyou\ D:\jyugyou\ (N): en2 OK 2

Windows (L): D:\jyugyou\ D:\jyugyou\ D:\jyugyou\ (N): en2 OK 2 Windows C++ Microsoft Visual Studio 2010 C++ Microsoft C++ Microsoft Visual Studio 2010 Microsoft Visual Studio 2010 C++ C C++ Microsoft Visual Studio 2010 Professional Professional 1 Professional Professional

More information

ワードプロセッシングについて

ワードプロセッシングについて Word Word ONOFF (U)(P) ******** 1 OS Windows2000 Windows2000 (U) OK 2 Windows 3 Word 1) 2) (F)(O) A() FD(A) Word 4 1) / > < *.? " : ; 2) SAMPLE2 A SAMPLE2 5 .doc 6 Alt f6f9 7 + 8 ) 2) 9 1) 2) 1) 10 2)

More information

HTML HTML HTML 4.1 4.2 4.3 4.4 14 15 16 17

HTML HTML HTML 4.1 4.2 4.3 4.4 14 15 16 17 1 11 13 2 11 27 3 12 11 HTML HTML HTML 4.1 4.2 4.3 4.4 14 15 16 17 WWW(World Wide Web) HTML(HyperText Markup Language) HTML HTML HTML HTML - 1 - .1 HTML (V)(C) HTML - 2 - HTML HTML OS Windows 2.1 HTML

More information

DVIOUT-MTT元原

DVIOUT-MTT元原 TI-92 -MTT-Mathematics Thinking with Technology MTT ACTIVITY Discussion 1 1 1.1 v t h h = vt 1 2 gt2 (1.1) xy (5, 0) 20m/s [1] Mode Graph Parametric [2] Y= [3] Window [4] Graph 1.1: Discussion 2 Window

More information

-34-

-34- -33- -34- ! -35- ! -36- ! -37- -38- -39- -40- -41- -42- -43- -44- -45- -46- -47- -48- -49- -50- ! -51- -52- !! -53- -54- ! -55- -56- -57- !!!!! "" "!!! " "" " -58- -59- !!! -60- -61- -62- -63- ! -64- !

More information

xyr x y r x y r u u

xyr x y r x y r u u xyr x y r x y r u u y a b u a b a b c d e f g u a b c d e g u u e e f yx a b a b a b c a b c a b a b c a b a b c a b c a b c a u xy a b u a b c d a b c d u ar ar a xy u a b c a b c a b p a b a b c a

More information

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID 10 10 10.1 1. 2. 3. HTML(HyperText Markup Language) Web [ ][ ] HTML Web HTML HTML Web HTML ~b08a001/www/ ( ) ~b08a001/www-local/ ( ) html ( ) 10.2 WWW WWW-local b08a001 ~b08a001/www/ ~b08a001/www-local/

More information

1 1 [1] ( 2,625 [2] ( 2, ( ) /

1 1 [1] ( 2,625 [2] ( 2, ( ) / [] (,65 [] (,3 ( ) 67 84 76 7 8 6 7 65 68 7 75 73 68 7 73 7 7 59 67 68 65 75 56 6 58 /=45 /=45 6 65 63 3 4 3/=36 4/=8 66 7 68 7 7/=38 /=5 7 75 73 8 9 8/=364 9/=864 76 8 78 /=45 /=99 8 85 83 /=9 /= ( )

More information

Taro-CSS.jtd

Taro-CSS.jtd CSSCascading Style Sheet 1. CSS CSSCascading Style Sheet HTML XHTML, XML HTML CSS HTML/XHTML/XML CSS HTMLXHTML CSS XML CSS 2. CSS HTML/XHTML CSS HTML CSS XML XSL-FO XSLT+CSS CSS Web Web HTML 3. HTML HTML

More information

tottori2013-print.key

tottori2013-print.key 1 / 152 3 / 152 2 / 152 4 / 152 5 / 152 7 / 152 6 / 152 8 / 152 9 / 152 11 / 152 Red: [R,G,B] = [255,0,0] Yellow [R,G,B] = [255, 255, 0] Magenta [R,G,B] = [255, 0, 255] W [R,G,B] = [ Green: [R,G,B] = [0,

More information

橡Taro9-生徒の活動.PDF

橡Taro9-生徒の活動.PDF 3 1 4 1 20 30 2 2 3-1- 1 2-2- -3- 18 1200 1 4-4- -5- 15 5 25 5-6- 1 4 2 1 10 20 2 3-7- 1 2 3 150 431 338-8- 2 3 100 4 5 6 7 1-9- 1291-10 - -11 - 10 1 35 2 3 1866 68 4 1871 1873 5 6-12 - 1 2 3 4 1 4-13

More information

Excel ではじめる数値解析 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. このサンプルページの内容は, 初版 1 刷発行時のものです.

Excel ではじめる数値解析 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます.   このサンプルページの内容は, 初版 1 刷発行時のものです. Excel ではじめる数値解析 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/009631 このサンプルページの内容は, 初版 1 刷発行時のものです. Excel URL http://www.morikita.co.jp/books/mid/009631 i Microsoft Windows

More information

色彩 COLOR 言語データ分析の結果を表示するとき文字列の背景色や文字色を変えることがあり ます ここでは はじめにペイントを使って色を決定する変数と色の出力の関係を見 ます 次に 色相と明度 色相と彩度の組み合わせと赤 緑 青の混合を見ます ペイントの 色の編集 を使って 色彩の変数として使われ

色彩 COLOR 言語データ分析の結果を表示するとき文字列の背景色や文字色を変えることがあり ます ここでは はじめにペイントを使って色を決定する変数と色の出力の関係を見 ます 次に 色相と明度 色相と彩度の組み合わせと赤 緑 青の混合を見ます ペイントの 色の編集 を使って 色彩の変数として使われ 色彩 COLOR 言語データ分析の結果を表示するとき文字列の背景色や文字色を変えることがあり ます ここでは はじめにペイントを使って色を決定する変数と色の出力の関係を見 ます 次に 色相と明度 色相と彩度の組み合わせと赤 緑 青の混合を見ます ペイントの 色の編集 を使って 色彩の変数として使われる 色相 (Hue) 彩度 (Saturation) 明度 (Luminance) と 赤 (Red)

More information

情報プリント パソコンプログラミング

情報プリント パソコンプログラミング 修正試運転 Project Editor のメニューから [ ベーシック ] [ デバッグ ] を選択する 情報プリントパソコンプログラミング [p1] Ⅰ. プログラミング言語 Active Basic Ver2.6 を用いたプログラム開発の概要 1Basic とは Beginner's All-purpose Symbolic Instruction Code の略で 1964 年ダートマス大学で大型コンピュータの教育用言語として開発された

More information

6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1

6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1 6 1 6 (1) (2) HTML (3) PDF Copy&Paste 1 Web 1 Web Web 1 Web HTML 6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1 6 3 1.1 HTML Web HTML(Hyper Text Markup Language)

More information

t θ, τ, α, β S(, 0 P sin(θ P θ S x cos(θ SP = θ P (cos(θ, sin(θ sin(θ P t tan(θ θ 0 cos(θ tan(θ = sin(θ cos(θ ( 0t tan(θ

t θ, τ, α, β S(, 0 P sin(θ P θ S x cos(θ SP = θ P (cos(θ, sin(θ sin(θ P t tan(θ θ 0 cos(θ tan(θ = sin(θ cos(θ ( 0t tan(θ 4 5 ( 5 3 9 4 0 5 ( 4 6 7 7 ( 0 8 3 9 ( 8 t θ, τ, α, β S(, 0 P sin(θ P θ S x cos(θ SP = θ P (cos(θ, sin(θ sin(θ P t tan(θ θ 0 cos(θ tan(θ = sin(θ cos(θ ( 0t tan(θ S θ > 0 θ < 0 ( P S(, 0 θ > 0 ( 60 θ

More information

SXF Converter for DWG 2004/ SXFデータトランスレータ 2004 注意事項

SXF Converter for DWG 2004/ SXFデータトランスレータ 2004 注意事項 SXF Converter for DWG 2004 SXF2004 (2005 ) 1... 1 1.1... 1 1.2 Windows DWG... 1 2 AutoCAD SXF... 1 2.1... 1 2.2... 1 2.3... 1 2.4... 1 2.5... 1 2.6... 2 2.7... 2 2.8... 3 2.9... 3 2.10... 4 2.11... 5 2.12...

More information

コンピュータ概論

コンピュータ概論 5.1 VBA VBA Check Point 1. 2. 5.1.1 ( bug : ) (debug) On Error On Error On Error GoTo line < line > 5.1.1 < line > Cells(i, j) i, j 5.1.1 MsgBox Err.Description Err1: GoTo 0 74 Visual Basic VBA VBA Project

More information

untitled

untitled Visual Basic.NET 1 ... P.3 Visual Studio.NET... P.4 2-1 Visual Studio.NET... P.4 2-2... P.5 2-3... P.6 2-4 VS.NET(VB.NET)... P.9 2-5.NET... P.9 2-6 MSDN... P.11 Visual Basic.NET... P.12 3-1 Visual Basic.NET...

More information

, MEN S TRAINING FABRIC TECH : SIZES : NO. COLOR 016 ANTHRACITE / BLACK 716 TOURMALINE TEAL / ACADEMY 985 NEON CORAL / ANTHRAC

, MEN S TRAINING FABRIC TECH : SIZES : NO. COLOR 016 ANTHRACITE / BLACK 716 TOURMALINE TEAL / ACADEMY 985 NEON CORAL / ANTHRAC 1316203 5,500 016 SIZES : 716 985 NO. COLOR 016 ANTHRACITE / BLACK 716 TOURMALINE TEAL / ACADEMY 985 NEON CORAL / ANTHRACITE 1311198 5,500 100 SIZES : 003 487 600 716 NO. COLOR 100 WHITE / BLACK 003 BLACK

More information

Python3 Next 2

Python3 Next 2 Python Python Tkinter Tkinter Python Python Anaconda Python Anaconda Python https://www.continuum.io/downloads Python 3.6 version Python2 Python3 Python 2.7 Python 3.6 Python2 1 Python3 Next 2 I Agree

More information

131 71 7 1 71 71 71 71 71 71 71 71 71 71 7 1 71 71 71 71 71 71 71 71 7 1 71 7 1 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 7 1 71 71 71 71 71 71 71 71 71 7 1 71 71 71 71 71 71 71 7 1 71 7 1 71

More information

Shooting Game KENZOU Shooting Game HSP 1 2 ( HSP Shooting Game HSP 2 OK OK STOP 1:

Shooting Game KENZOU Shooting Game HSP 1 2 ( HSP Shooting Game HSP 2 OK OK STOP 1: Shooting Game KENZOU 2005.01.16 1 Shooting Game HSP 1 2 (HSP Shooting Game HSP 2 OK OK STOP 1: 1 http://www.onionsoft.net/hsp/ 2 1 ;********************************* ; Shooting Game ; 2005.01.04 ;**********************************

More information

untitled

untitled 20 7 1 22 7 1 1 2 3 7 8 9 10 11 13 14 15 17 18 19 21 22 - 1 - - 2 - - 3 - - 4 - 50 200 50 200-5 - 50 200 50 200 50 200 - 6 - - 7 - () - 8 - (XY) - 9 - 112-10 - - 11 - - 12 - - 13 - - 14 - - 15 - - 16 -

More information

untitled

untitled 19 1 19 19 3 8 1 19 1 61 2 479 1965 64 1237 148 1272 58 183 X 1 X 2 12 2 15 A B 5 18 B 29 X 1 12 10 31 A 1 58 Y B 14 1 25 3 31 1 5 5 15 Y B 1 232 Y B 1 4235 14 11 8 5350 2409 X 1 15 10 10 B Y Y 2 X 1 X

More information

SCORE−‹Šp‡Ì”è‹ø‡«Ver3

SCORE−‹Šp‡Ì”è‹ø‡«Ver3 2 Step 0 Step 1 Step 1 Step 2 Step 3 Step 4 Step 5 Step1 3 Step 2 Step 2-1 Step 2-2 Step3 Step4 Step2 4 5 Step 3 Step 3-1 Step 3-2 Step 3-3 Step5 6 Step 3-4 Step3 Step5 7 8 Step 4 Step 4-1 9 Step4 Step

More information

<B54CB5684E31A4E9C0CBA4E5AA6BC160BEE3B27AA544A5552E706466>

<B54CB5684E31A4E9C0CBA4E5AA6BC160BEE3B27AA544A5552E706466> N1 2 3 1 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 4 2 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 5 3 62 63 64 65 66 68 69 70 70 72 74 75 76 77 78 80 81 82 83

More information

立ち読みページ

立ち読みページ Chapter 6 6 Windows Live STEP1 115 STEP 116 STEP3 11 STEP4 18 STEP5 19 STEP 1 1 6 115 STEP 1 W indows L ive W indows L ive 1 3 4 5 6 7 1 116 W indows L ive 6 STEP UP 117 Windows Live W indows L ive 1 3

More information

K1A P-11 KE P-1 K2A P-1 K2C P-17 NEW!! RC-KE P- KM P-19 E2A P-21 (mm) K1A KE K2A K2C KM E2A RC-KE -2

K1A P-11 KE P-1 K2A P-1 K2C P-17 NEW!! RC-KE P- KM P-19 E2A P-21 (mm) K1A KE K2A K2C KM E2A RC-KE -2 -1 K1A K2A K2C K1A P-11 KE P-1 K2A P-1 K2C P-17 NEW!! RC-KE P- KM P-19 E2A P-21 (mm) K1A KE K2A K2C KM E2A RC-KE -2 RC-KE - RC-KE RC-KE-002-001S RC-KE-002HJ H-BT0-001 F-R0T-0 0 0. 9. (0) 0 (100) RC-R02-001

More information

ルーレットプログラム

ルーレットプログラム ルーレットプログラム VB 2005 4 プログラムの概要 カジノの代表的なゲーム ルーレット を作成する 先ず GO! ボタンをクリックすると ルーレット盤上をボールが回転し 一定時間経過すると ボールが止まり 出目を表示するプログラムを作成する 出目を 1~16 大小 偶数奇数の内から予想して 予め設定した持ち点の範囲内で賭け点を決め 賭け点と出目に依り 1 点賭けの場合は 16 倍 其他は 2

More information

1 1 Gnuplot gnuplot Windows gnuplot gp443win32.zip gnuplot binary, contrib, demo, docs, license 5 BUGS, Chang

1 1 Gnuplot gnuplot   Windows gnuplot gp443win32.zip gnuplot binary, contrib, demo, docs, license 5 BUGS, Chang Gnuplot で微分積分 2011 年度前期 数学解析 I 講義資料 (2011.6.24) 矢崎成俊 ( 宮崎大学 ) 1 1 Gnuplot gnuplot http://www.gnuplot.info/ Windows gnuplot 2011 6 22 4.4.3 gp443win32.zip gnuplot binary, contrib, demo, docs, license 5

More information

Hot Soup Processor( HSP) HSP C Java Lime Lime 1.2 ( )

Hot Soup Processor( HSP) HSP C Java Lime Lime 1.2 ( ) 1 1 1 1.1 Hot Soup Processor( HSP) HSP C Java Lime Lime 1.2 ( ) 2 1 1: level=1 //level... 2: // 3: *setting 4: randomize // 5: screen 0,640,480 6: my_x=0.0 //my_x... x 7: my_y=180.0 //my_y... y 8: my_dy=0.25

More information

dvi

dvi 44 2 87 2017 209 219 MDS Analysis of the Visibility Data for the Combinations of Foreground and Background Colors by Maximum ikelihood Asymmetric MDS Using the Multiplicative Error Model Shingo Saburi

More information

第1回日本産婦人科

第1回日本産婦人科 e e TEL045-231-0960 TEL03-3433-1111 3360 4 2 1 1024768 OS RGB -15pins Dsub-15pins PowerPoint PC WindowsXPMicrosoft PowerPoint2002 Microsoft Power Point ( PC ) Windows USB CD-R PC 30 PC PC 36

More information

-----------------------------------------------------------------------------------------1 --------------------------------------------------------------------------------------1 -------------------------------------------------------------------------------------1

More information

›¼’à”v“lŠÍ1−ª

›¼’à”v“lŠÍ1−ª 3 1 1 2 3 4 5 6 7 8 8 10 12 14 16 18 20 22 24 2 1 2 3 4 5 6 7 8 9 10 11 12 26 28 30 32 34 36 38 40 42 44 46 48 50 4 3 1 2 3 4 5 52 54 56 58 60 6 62 7 8 9 10 64 66 68 70 72 5 1 1 4 2 5 6 6 7 1 8 1 9 2 10

More information

1 2 3 4 1 2 3 4 1 2 3 4 12 3 4

1 2 3 4 1 2 3 4 1 2 3 4 12 3 4 1 2 3 4 5 6 1 2 3 4 5 6 1 2 1 2 1 2 1 2 1 2 3 4 12 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 12 3 4 1 2 3 4 5 6 7 8 1 2 3 46 7 1 2 3 4 5 6 7 1 2 3 4 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 16 7 8 92 3 46 7 :

More information

- 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 2-12 - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 1 - 2 - 3 6 1 1-4 - 5 - 6 - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 130 3 130 5 2 50 1.5 48 59 62 63-9 - 1 - 2 - 3 () - 4 - 5 -

More information

S1460...........\1.E4

S1460...........\1.E4 3 4 3 4 5 3 4 5 3 4 3 4 3 3 3 3 4 3 4 3 3 4 4 3 3 3 3 4 3 4 3 3 3 3 3 3 4 3 4 3 4 5 4 3 5 4 3 3 4 5 3 4 5 4 3 4 3 3 4 3 4 3 3 3 3 3 4 3 3 4! "! " " 0 6 ! " 3 4 3 3 4 3 ! " 3 3 4 5 4 5 6 3 3

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 0 1 2 3 4 5 6 1964 1978 7 0.0015+0.013 8 1 π 2 2 2 1 2 2 ( r 1 + r3 ) + π ( r2 + r3 ) 2 = +1,2100 9 10 11 1.9m 3 0.64m 3 12 13 14 15 16 17 () 0.095% 0.019% 1.29% (0.348%) 0.024% 0.0048% 0.32% (0.0864%)

More information

eil2009062930_4.ppt

eil2009062930_4.ppt URL (Universal Resource Locator) WWW (World Wide Web) URL http://www.cs.kumamoto-u.ac.jp/ Web ftp://ftp.cc.kumamoto-u.ac.jp/ FTP (File Transfer Protocol) FTP World Wide Web (WWW) Web HTTP (HyperText Transfer

More information

all.dvi

all.dvi fortran 1996 4 18 2007 6 11 2012 11 12 1 3 1.1..................................... 3 1.2.............................. 3 2 fortran I 5 2.1 write................................ 5 2.2.................................

More information

FX ) 2

FX ) 2 (FX) 1 1 2009 12 12 13 2009 1 FX ) 2 1 (FX) 2 1 2 1 2 3 2010 8 FX 1998 1 FX FX 4 1 1 (FX) () () 1998 4 1 100 120 1 100 120 120 100 20 FX 100 100 100 1 100 100 100 1 100 1 100 100 1 100 101 101 100 100

More information

御社名 : 2016 FALL/WINTER 御担当者名 : ITEM NO ITEM NAME NO COLORWAY S/30 M/32 L/34 XL/36 XXL 合計数 上代 合計金額 デリバリー予定 SPECTRA FILM COACH JACKET 96 MULTI 0 2

御社名 : 2016 FALL/WINTER 御担当者名 : ITEM NO ITEM NAME NO COLORWAY S/30 M/32 L/34 XL/36 XXL 合計数 上代 合計金額 デリバリー予定 SPECTRA FILM COACH JACKET 96 MULTI 0 2 御社名 : 2016 FALL/WINTER 御担当者名 : ITEM NO ITEM NAME NO COLORWAY S/30 M/32 L/34 XL/36 XXL 合計数 上代 合計金額 デリバリー予定 41501 SPECTRA FILM COACH JACKET 96 MULTI 0 28,000 0 9 月 41502 POLAROID PRINT PUFF JACKET 96 MULTI

More information

2X Y Y X θ 1, θ 2,... Y = f(x, θ 1, θ 2,...) θ k III 8 (2013 05 28 ) 1 / 39

2X Y Y X θ 1, θ 2,... Y = f(x, θ 1, θ 2,...) θ k III 8 (2013 05 28 ) 1 / 39 III 8 (3) VBA, R / III 8 (2013 05 28 ) / 39 2X Y Y X θ 1, θ 2,... Y = f(x, θ 1, θ 2,...) θ k III 8 (2013 05 28 ) 1 / 39 Y X 1, X 2,..., X n Y = f(x 1, X 2,..., X n, θ 1, θ 2,...) (y k, x 1,k, x 2,k,...)

More information

7 CASHMERE CASHMERE JACKET PC-025-469 SAMPLE M BLACK (10) 160,000 TAX CASHMERE VEST PC-025-470 SAMPLE M BLACK (10) 100,000 TAX CASHMERE PANTS PC-025-471 SAMPLE M BLACK (10) 120,000 TAX 8 HAND RUBBERISED

More information

●70974_100_AC009160_KAPヘ<3099>ーシス自動車約款(11.10).indb

●70974_100_AC009160_KAPヘ<3099>ーシス自動車約款(11.10).indb " # $ % & ' ( ) * +, -. / 0 1 2 3 4 5 6 7 8 9 : ; < = >? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y " # $ % & ' ( ) * + , -. / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B

More information

プログラム

プログラム !!!!!!!! !!!!!!! "! !!!!!!!!!! !!!!!! !! !! !!!! !! " " " !!!! !!! "!! !! " !! " !!!! !! "!!! !!!!!! " " !!!!!!!!!!!! !!!!!! ρ!!"! " " " " " " " " "!!! " " " " " " "!! "" !! !!!! "!! " "!! ρ !!!! " "!!

More information

6 2 1

6 2 1 6 1 6 (1) (2) HTML (3) 1 Web HTML 1 Web 1 Web Web 6 2 1 6 3 1.1 HTML(XHTML) Web HTML(Hyper Text Markup Language) ( ) html htm HTML XHTML(XHTML 1.0 Transitional)

More information

BASICとVisual Basic

BASICとVisual Basic Visual Basic BASIC Visual Basic BASICBeginner's All purpose Symbolic Instruction Code Visual Basic Windows BASIC BASIC Visual Basic Visual Basic End Sub .Visual Basic Visual Basic VB 1-1.Visual Basic

More information

2 4 BASIC (4) WWW BASIC 1 2 ( ) ( ) 1.2 3B 5 14 ( ) ( ) 3 1 1

2 4 BASIC (4) WWW   BASIC 1 2 ( ) ( ) 1.2 3B 5 14 ( ) ( ) 3 1 1 2 4 BASIC (4 2007 5 8 WWW http://www.math.meiji.ac.jp/~mk/syori2-2007/ BASIC 2 (. (5 5 3.2 3B 5 4 ( 5 5 5 2 ( 3 ( PAINT PAINT ( MAT PLOT AREA.3 : MAT PLOT AREA PAINT ( BASIC (.3. MAT PLOT AREA REM testmatplotarea.bas

More information