NSDate NSCalendarDate NSObject NSDate NSCalendarDate NSDate NSCalendarDate NSDate NSCalendar NSDate date NSDate *d = [ NSDate date ]; // NSDate : + (i

Size: px
Start display at page:

Download "NSDate NSCalendarDate NSObject NSDate NSCalendarDate NSDate NSCalendarDate NSDate NSCalendar NSDate date NSDate *d = [ NSDate date ]; // NSDate : + (i"

Transcription

1 ( 1 st Edition ) - 1 -

2 NSDate NSCalendarDate NSObject NSDate NSCalendarDate NSDate NSCalendarDate NSDate NSCalendar NSDate date NSDate *d = [ NSDate date ]; // NSDate : + (id) date : init date NSDate *d = [ [ [ NSDate alloc ] init ] autorelease ]; // datewithtimeintervalsincenow : initwithtimeintervalsincenow : NSTimeInterval NSDate* d = [ NSDate datewithtimeintervalsincenow : 3*60 ]; // 3-2 -

3 NSDate : + (NSDate *) datewithtimeintervalsincenow : (NSTimeInterval) sec sec : : datewithstring : initwithstring : NSDate* d = [ NSDate datewithstring 10:45: " ]; NSDate : + (NSDate *) datewithstring : (NSString *) stime stime : "YYYY-MM-DD hh:mm:ss +HHMM" : YYYY - MM - DD - : hh - mm - ss - : +or- - (GMT) +- : HH - (GMT ) MM - (GMT ) : stime NSDate NSDate " yesterday "" sunday " NSDate NSDate : + datewithnaturallanguagestring : (NSString *) string string : "yesterday" : null yesterday yesterday morning sunday last sunday :20-3 -

4 sunday next xxx last xxx : : morning : 10:00 noon : 12:00 lunch : 12:00 dinner : 19:00 tomorrow : yesterday : sun, mon.. : ( ex. "next sun" ) sunday, monday.. : ( ex. "next sunday" ) NSDate addtimeinterval : NSDate NSDate NSDate *d1 = [ xxxx ]; // NSDate *d2 = [ d1 addtimeinterval : 60*60 ]; // d1 1 NSDate : - (id) addtimeinterval : (NSTimeInterval) sec sec : : NSDate NSDate addtimeinterval : alloc retain NSDate *d = [ NSDate date ]; // d = [ d addtimeinterval : 60*60 ]; // 1 ( ) - 4 -

5 NSDate timeintervalsincedate : NSDate *d1 = [ NSDate date ]; // NSDate *d2 = [ d1 addtimeinterval : 60*60 ]; // 1 NSTimeInterval ti = [ d1 timeintervalsincedate : d2 ]; // d1 - d2 = d1 - d2 timeintervalsincedate : NSDate : - (NSTimeInterval) timeintervalsincedate : (NSDate *) anotherdate anotherdate : : - anotherdate compare : NSComparisonResult NSDate *d1 = [ NSDate date ]; // NSDate *d2 = [ d1 addtimeinterval : 60*60 ]; // 1 switch( [ d1 compare : d2 ] ) { case NSOrderedAscending : < d2" ); break; // case NSOrderedSame : = d2" ); break; case NSOrderedDescending : > d2" ); break; } NSDate : - (NSComparisonResult) compare : (NSDate *) anotherdate anotherdate : : < anotherdate NSOrderedAscending : = anotherdate NSOrderedSame : > anotherdate NSOrderedDescending isequaltodate : - 5 -

6 if ( [ d1 isequaltodate : d2 ] ) = d2" ); NSDate : - (BOOL) isequaltodate : (NSDate *) anotherdate anotherdate : : YES NO earlierdate : laterdate : NSDate *d1 = [ NSDate date ]; // NSDate *d2 = [ d1 addtimeinterval : 60*60 ]; // 1 NSDate *d3 = [ d1 earlierdate : d2 ]; // d3 <- d1 NSDate *d4 = [ d1 laterdate : d2 ]; // d4 <- d2 NSDate : - (NSDate *) earlierdate : (NSDate *) anotherdate anotherdate : : NSDate : - (NSDate *) laterdate : (NSDate *) anotherdate anotherdate : : distantfuture distantpast NSDate *dfuture = [ NSDate distantfuture ]; // :00:00 GMT NSDate *dpasr = [ NSDate distantpast ]; // :00:00 GMT - 6 -

7 NSDate : - (NSDate *) distantfuture : ( :00:00 GMT ) NSDate : - (NSDate *) distantpast : ( :00:00 GMT ) - 7 -

8 NSCalendarDate NSDate NSDate calendardate NSDate date NSCalendarDate *cd = [ NSCalendarDate calendardate ]; NSCalendarDate : + (id) calendardate : NSDate NSCalendarDate datewithyear : month : day : hour : minute : second : timezone : nil NSCalendarDate *cd = [ NSCalendarDate datewithyear : 2002 month : 4 day : 20 hour : 1 minute : 0 second : 0 timezone : nil ]; - 8 -

9 NSCalendarDate : - (id) datewithyear : (int ) year month : (unsigned ) month day : (unsigned ) day hour : (unsigned ) hour minute : (unsigned ) minute second : (unsigned ) second timezone : (NSTimeZone *) timezone year : month : day : hour : minute : second : timezone : nil : NSDate NSCalendarDate NSCalendarDate *cd = [ NSCalendar calendardate ]; int iyear = [ cd yearofcommonera ]; // ( ) int imonth = [ cd monthofyear ]; // ( 1-12 ) int iday = [ cd dayofmonth ]; // ( 1-31 ) int idayy = [ cd dayofyear ]; // 1 1 ( ) int idayc = [ cd dayofcommonera ]; // int iweek = [ cd dayofweek ]; // ( 0 = Sunday.. 6 = Saturday ) int ihour = [ cd hourofday ]; // ( 0-23 ) int iminute = [ cd minuteofhour ]; // ( 0-59 ) int isecond = [ cd secondofminute ]; // ( 0-59 ) NSCalendarDate : - (int) yearofcommonera : int iyear = [ [ NSDate calendardate ] yearofcommonera ]; // - 9 -

10 NSCalendarDate : - (int) monthofyear : ( 1-12 ) int imonth = [ [ NSDate calendardate ] monthofyear ]; // NSCalendarDate : - (int) dayofmonth : ( 1-31 ) int iday = [ [ NSDate calendardate ] dayofmonth ]; // NSCalendarDate : (int) dayofyear : 1 1 ( ) int iday = [ [ NSDate calendardate ] dayofyear]; // 1.1 NSCalendarDate : - (int) dayofcommonera : ( 1 - ) int iday = [ [ NSDate calendardate ] dayofcommonera ]; // NSCalendarDate : - (int) dayofweek : ( 0 - Sunday Saturday ) int iweek = [ [ NSDate calendardate ] dayofweek ]; //

11 NSCalendarDate : - (int) hourofday : ( 0-23 ) int ihour = [ [ NSDate calendardate ] hourofday ]; // NSCalendarDate : - (int) minuteofhour : ( 0-59 ) int iminute = [ [ NSDate calendardate ] minuteofhour ]; // NSCalendarDate : - (int) secondofminute : ( 0-59 ) int isecond = [ [ NSDate calendardate ] secondofminute ]; // NSCalendarDate datebyaddingyears : months : days : hours : minutes : seconds :

12 NSCalendarDate : - (NSCalendarDate *) datebyaddingyears : (int) year months : (int) month days : (int) day hours : (int) hour minutes : (int) minute seconds : (int) second year : month : day : hour : minute : second : : NSCalendarDate *now = [ NSCalendarDate calendardate ]; // NSCalendarDate *firstday; // 1 NSCalendarDate *lastday; // firstday = [ NSCalendarDate datewithyear : [ now yearofcommonera ] month : [ now monthofyear ] day : 1 hour : 0 minute : 0 second : 0 timezone : nil ]; // 1 lastday = [ firstday datebyaddingyears : 0 months : +1 // 1 days : -1 // 1 hours : 0 minutes : 0 seconds : 0 ]; (%@)", [ lastday dayofmonth ], lastday ); calendardate datewithyear : month : day : hour : minute : second : timezone :

13 NSCalendarDate NSTimeZone NSTimeZone : + (NSTimeZone *) timezonewithname : (NSString *) sname sname : ex. "JST" : NSTimeZone : + (NSTimeZone *) timezoneforsecondsfromgmt : (int) sec sec : 60x60x9 = : NSTimeZone : + (NSTimeZone *) localtimezone : NSCalendarDate *cd1 = [ NSCalendarDate calendardate ]; NSCalendarDate *cd2 = [ NSCalendarDate calendardate ]; [ cd1 settimezone : [ NSTimeZone timezoneforsecondsfromgmt : 0 ] ]; // GMT [ cd2 settimezone : [ NSTimeZone timezonewithname ] ]; // JST = %@", cd1 ); // ex. "cd1 = :56: " = %@", cd2 ); // ex. "cd2 = :56: "

14 CalendarImage NSAttributedString NSMutableAttributedString 1. HTML NSMutableString 2. HTMLNSAttributedString 3. NSAttributedString NSCalendarDate *curtime = [ NSCalendarDate calendardate ]; // int iyear = [ curtime yearofcommonera ]; int imon = [ curtime monthofyear ]; NSString *shtml; NSAttributedString *as; // HTML shtml = [ NSString stringwithformat FACE=Helvetica><B>%d</B> %d</font>", iyear, imon ]; // as = [ [ [ NSAttributedString alloc ] initwithhtml : [ shtml datausingencoding : NSASCIIStringEncoding ] documentattributes : nil ] autorelease ];

15 NSAttributedString initwithhtml : documentattributes : NSAttributedString : HTML - (id) initwithhtml : (NSData *) data documentattributes : (NSDictionary **) docatt data : HTML docattr : nil : thismonth CalendarImage.h #import CalendarImage : NSObject { } + (NSImage *) thismonth; CalendarImage.m #import CalendarImage + (NSImage *) thismonth { NSCalendarDate *now = [ NSCalendarDate calendardate ]; // NSCalendarDate *topdate; // 1 NSCalendarDate *enddate; // NSMutableString *shtml; // HTML NSAttributedString *ascal; // NSImage *imgcal; //

16 calendardate CalendarImage.m > thismonth... int iyear = [ now yearofcommonera ]; // int imonth = [ now monthofyear ]; // topdate = [ NSCalendarDate datewithyear : iyear month : imonth day : 1 hour : 0 minute : 0 second : 0 timezone : nil ]; // 1 enddate = [ topdate datebyaddingyears : 0 months : +1 days : -1 hours : 0 minutes : 0 seconds : 0 ]; // CalendarImage.m > thismonth... { ///// HTML ///// int itopweek; // 1 int itoday = [ now dayofmonth ]; // int iendday = [ enddate dayofmonth ]; // int i, iweek; shtml = [ NSMutableString stringwithformat size=4><b>%d %d</b></font><br>", iyear, imonth ]; // CalendarImage.m > thismonth... itopweek = [ topdate dayofweek ]; for ( i = 0 ; i < itopweek ; i++ ) // [ shtml appendstring " ];

17 itopweek CalendarImage.m > thismonth... iweek = itopweek; for ( i = 1 ; i <= iendday ; i++ ) { // if ( iweek == 0 ) { [ shtml appendstring color=red>" ]; } if ( iweek == 6 ) { [ shtml appendstring color=blue>" ]; } if ( itoday == i ) { [ shtml appendstring color=green>" ]; } [ shtml appendstring : [ NSString stringwithformat i ] ]; if ( itoday == i ) { [ shtml appendstring ]; } if ( iweek == 6 ) { [ shtml appendstring ]; } if ( iweek == 0 ) { [ shtml appendstring ]; } [ shtml appendstring " ]; // iweek iweek CalendarImage.m > thismonth... iweek++; if ( iweek == 7 ) { // iweek = 0; [ shtml appendstring ]; } } // [ shtml appendstring ]; } iweek iweek <br> <pre>

18 CalendarImage.m > thismonth... { ///// & ///// NSSize sizecal; // ascal= [ [ [ NSAttributedString alloc ] initwithhtml : [ shtml datausingencoding : NSASCIIStringEncoding ] documentattributes : nil ] autorelease ]; CalendarImage.m > thismonth... sizecal = [ ascal size ]; // imgcal = [ [ [ NSImage alloc ] initwithsize : sizecal ] autorelease ]; [ imgcal lockfocus ]; [ ascal drawatpoint : NSMakePoint( 0, 0 ) ]; // [ imgcal unlockfocus ]; } return( imgcal ); } size NSImage drawatpoint :

●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

橡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

TextSystemOverview

TextSystemOverview テキストシステム アーキテクチャー ソフトウエア設計者にとって アプリケーションにおけるテキストの取り扱いという問題は 最も頭を悩ま せる要素です 最も 基本的な テキストシステムでも 入力 レイアウト 表示 編 集 コピー ペースト これらはサポートされていて当たり前です そのうえ最近は 単なるエ ディタ ワードプロセッサではなく でさえ複数のフォントやパラグラフ スタイル イメージの貼付に スペル

More information

関 数

関 数 /0/ 12 / / + 2 3 3 2 2 * 2*3 / 2/3 23 2 3 11 11 11 11 11 11 28 2468 2648 RANK SUM COUNTA SUMIF COUNTIF AVERAGE ROUND STDEVP FREQUENCY MAX LARGE MEDIAN MIN 66 6 C6:C15,,G6:G15 SUM 66 / D17,1 SUMIF / C6:C15,,G6:G15

More information

ARC Automatic Reference Counting clang 新しいコンパイラ LLVMプロジェクト (http://llvm.org/) のコンパイラ C Objective-C C++ の効率的なコードを生成 オプションなどは gcc とほぼ共通 Apple社独自の拡張機能を実現 ARC ブロックオブジェクトなど ARCを利用するには clang が必須 コンパイルオプションに

More information

Microsoft Word - MDOnline 2001.

Microsoft Word - MDOnline 2001. NSToolbar NSToolbarItem - 1 - Font Style Font Size セパレータ Blue Text Print : 文字修飾 ( Plain Text Bold Italic ) をメニューから変更する : 文字サイズをステッパーで変更する : 区切りを表示する : 文字色を青と黒に交互に切替える : テキストビューを印刷する NSTextView blueletter.tif

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション "# "# $%&' "#$% $# & $# $% % ' ()(*"#$% +,(- ()(*"#$%.' ()(* $/.0##'' %0$&0% 1*2#/0/%'&0343$56 789#/0/'%&04../ "3"0##"$ "0%0$" "7 1*2#.30///04%.$ 789#.30///0#$'4 http://www.ibie2016.com/exhibitorlist/

More information

†ı25”Y„o-PDF.ren

†ı25”Y„o-PDF.ren 12,000 10,000 8,000 6,000 4,000 2,000 0 1998 1999 2000 2001 2002 2003 2004 1,200 1,000 800 600 400 200 0 1998 1999 2000 2001 2002 2003 2004 $ "! ''" '' ''$ ''% ''& '''! " ' & % $ "! ''" ' '$ '% '& ''!

More information

76

76 ! # % & % & %& %& " $ 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 % & &! & $ & " & $ & # & ' 91 92 $ % $'%! %(% " %(% # &)% & 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 !$!$ "% "%

More information

ex12.dvi

ex12.dvi 1 0. C, char., char, 0,. C, ("),., char str[]="abc" ; str abc.,, str 4. str 3. char str[10]="abc" ;, str 10, str 3., char s[]="abc", t[10] ;, t = s. ASCII, 0x00 0x7F, char., "abc" 3, 1. 1 8 256, 2., 2

More information

2

2 1 12123456789012345678901234 12123456789012345678901234 12123456789012345678901234 12123456789012345678901234 12123456789012345678901234 12123456789012345678901234 12123456789012345678901234 12123456789012345678901234

More information

1/5 ページ 日記検索ブログトップ記事一覧ログイン無料ブログ開設 fn7の日記 プロフィール 2010-02-03 Objective-C 最速基礎文法マスター Java 基礎文法最速マスター - 何かしらの言語による記述を解析する日記を参考に Objective-Cのものを書いてみた

More information

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV tutimura@mist.i.u-tokyo.ac.jp kaneko@ipl.t.u-tokyo.ac.jp http://www.misojiro.t.u-tokyo.ac.jp/ tutimura/sem3/ 2002 12 11 p.1/33 10/16 1. 10/23 2. 10/30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20

More information

クエリの作成が楽になるUDF

クエリの作成が楽になるUDF トレジャーデータサービス by IDCF 活用マニュアル 目次 (1) UDF の概要 概要 特長 P1 [ 日付を選択 ] (2) UDF の紹介 TIME 関連 UDF 1 TD_TIME_FORMAT P2 2 TD_TIME_RANGE 3 TD_SCHEDULED_TIME 4 TD_TIME_ADD 5 TD_TIME_PARSE 6 TD_DATE_TRUNC その他 UDF 7 TD_SESSIONIZE

More information

- 1 - - 2 - 320 421 928 1115 12 8 116 124 2 7 4 5 428 515 530 624 921 1115 1-3 - 100 250-4 - - 5 - - 6 - - 7 - - 8 - - 9 - & & - 11 - - 12 - GT GT - 13 - GT - 14 - - 15 - - 16 - - 17 - - 18 - - 19 - -

More information

untitled

untitled 13 50 15 6.0 0.25 220 23 92 960 16 16 3.9 3.9 12.8 83.3 7 10 1150 90 1035 1981 1850 4700 4700 15 15 1150 1150 10 12 31 1.5 3.7%(224 ) 1.0 1.5 25.4%(1522 ) 0.7 30.6 1835 ) 0.7 1.0 40.3 (2421 ) 7.3

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

index View Controller

index View Controller Creative Application Summer Camp Kengo Part - lesson 2 2011/08/26 index View Controller summer 2.1 View View (1) View View = View UIView View UIView (ex. ) UIView ( ) (, ) (c) / View (2) View 1. View 2.

More information

fp.gby

fp.gby 1 1 2 2 3 2 4 5 6 7 8 9 10 11 Haskell 12 13 Haskell 14 15 ( ) 16 ) 30 17 static 18 (IORef) 19 20 OK NG 21 Haskell (+) :: Num a => a -> a -> a sort :: Ord a => [a] -> [a] delete :: Eq a => a -> [a] -> [a]

More information

5 1 2 3 4 5 6 7 8 9 10 1 Quick Boot 1st Boot Device 2nd Boot Device 3rd Boot Device Network Boot Initial Display Mode S.M.A.R.T. for Hard Disks BootUp Num-Lock Password Check CPU Serial Number System BIOS

More information

1 1 2 65

1 1 2 65 3 3 2000 6 14 2 30 4 2 1 1 2 65 1!?? < > 3 2 2 100 19 19 100 100 100 < > 19 2 2 2 2 < > 2000 2000 50 1945 5 50 1945 5 45 20 20 4 1945 4 5 5 5 100 50 20 5 2 20 5 20 5 5 6 20 6 19 5 5 6 5 6 2 20 6 21

More information

パターン化されたロジックのコンポーネント化

パターン化されたロジックのコンポーネント化 UI C++Builder SEAXER 2 CAD BASIC CISC/RISC C++ Perl Java 3 PM 4 T^T) 5 UNIX 6 7 8 true/false SetLastError(); throw() BOOL abort 9 UML PM OOPS esign attern C/C++ 10 Don t Repeat Yourself 11 Windows3.1 12

More information

Microsoft Word - MDOnline 2001.

Microsoft Word - MDOnline 2001. - 1 - - 2 - #pragma mark LABELNAME mark #pragma mark SETTITLE - 3 - - 4 - - 5 - NSApplication requestuserattention : NSApplication : - (int) requestuserattention : (NSRequestUserAttentionType) reqtype

More information

EQUIUM EQUIUM S5010 1

EQUIUM EQUIUM S5010 1 EQUIUM EQUIUM S5010 1 1 1 2 3 4 2 1 2 3 2 3 1 2 3 4 5 6 7 4 1 2 5 1 2 6 1 7 1 2 3 4 5 6 7 1 2 3 4 5 6 3 7 8 9 1 2 3 4 4 5 6 7 8 1 1 2 3 4 10 1 11 12 1 13 14 1 15 16 1 1 2 3 17 1 2 3 18 4 5 6 1 19 1 2 3

More information

CONTENTS

CONTENTS 2 8 9 10 13 14 15 16 17 25 26 28 34 36 37 40 CONTENTS 42007 2 q w e r t 3 4 5 1 6 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 q w 1 9 Z K2 4 1 1 1 1 1 10 1 1 1 11 12 U U U U V V U U U 1 s t 13 1 1 14 15 s Sunday

More information

StringProgrammingGuide

StringProgrammingGuide Strings Programming Guide for Cocoa lengh characteratindex: mystring NSString *mystring = @"some text in an NSString..."; NSRange letterrange; letterrange = [mystring rangeofcharacterfromset:[nscharacterset

More information

2 KH Coder KH Coder KH Coder KH Coder

2 KH Coder KH Coder KH Coder KH Coder Keywords : 1 2 KH Coder KH Coder KH Coder KH Coder 2.1 KH Coder 1 ........,,,..... .. 2 - - - - - - - - - - - - 2.2 3, ......... - - - - - - 4 3 3.1.. 1 - / - - - - - 2 - ....... a . ... 3.2 < >, Sunday

More information

Lecture 3 Slides (January 12, 2010)

Lecture 3 Slides (January 12, 2010) CS193P - Lecture 3 iphone Application Development Custom Classes Object Lifecycle Autorelease Properties 1 Announcements Assignments 1A and 1B due Wednesday 1/13 at 11:59 PM Enrolled Stanford students

More information

防衛関係費/防衛関係費

防衛関係費/防衛関係費 29 6 24 5,063,717,069 4,826,454,531! 4,713,781,797 " 212,416,621 $$ # % & "!# $ 10,759,902 123,445,947 8,593,004 52,891,392! 8,593,004 59,925,253 " # $ % 7,033,861 & # $ % 2,070,900 71,136,937 & 99,743,887

More information

! "! # # # #!#!# # # # # # !"!! " " ##### ##!### # $%&'( )*+! " # ! " # $$$$ $ % % % & ' ' ' ( ) )* ) )* +,,* - +,,*. / 0 0* 1 2 1 1 3 1 2 1 1 * 42 5 4 4 6 5 4 1)2 1)5 1) /+2 /+ /+* : ; < = = *!! > >

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

財政金融統計月報第720号

財政金融統計月報第720号 ! # " $ % &! # % " $ &! # % " $ &! # %! # % " $ & " $ &! # % " $ & !!!!!!! !!!!!!! ! # " $ ! # " $ ! " # $! " # $ ! # " $ ! # $& %" !

More information

冊子_H25-11D

冊子_H25-11D 71 3 5 ( ) by kouyou_room 2013-11-23 17:35 Comments(4) Commented by at 2013-11-23 20:10 x Commented by at 2013-11-24 10:53 x Commented by at 2013-11-24 10:53 x 408 Commented by at 2013-11-25 11:47 x 72

More information

) CoreImage 2013/5/25 iphone

) CoreImage 2013/5/25 iphone ) CoreImage 2013/5/25 iphone DJ / : takatronix Facebook/Twitter/Skype/LINE/Weibo -> takatronix http://takatronix.com LEGO FX SEXY SCAN... (SexyMirror)2013/1 iphone ios API UIImagePickerController UI AVFoundation.framework

More information

... 3... 3... 3... 3... 4... 7... 10... 10... 11... 12... 12... 13... 14... 15... 18... 19... 20... 22... 22... 23 2

... 3... 3... 3... 3... 4... 7... 10... 10... 11... 12... 12... 13... 14... 15... 18... 19... 20... 22... 22... 23 2 1 ... 3... 3... 3... 3... 4... 7... 10... 10... 11... 12... 12... 13... 14... 15... 18... 19... 20... 22... 22... 23 2 3 4 5 6 7 8 9 Excel2007 10 Excel2007 11 12 13 - 14 15 16 17 18 19 20 21 22 Excel2007

More information

2

2 J 2 3 " ' + # & $ % ( ) * " # $ % & ' Q ( ) * + 4 1 2 5 6 1 2 7 1 B 2 Q 3 8 V X 9 W q 10 V X W q 11 12 13 14 - - a 15 x M 16 A B C A B 17 1 2 3 a a 18 4 5 19 x M 20 Q 21 B A 22 1 2 1 l 23 2 3 Z 8:1 4:1

More information

Microsoft Word - Œ{Ł¶.doc

Microsoft Word - Œ{Ł¶.doc 17 59.0% 41.0% 60.8% 76.0%71.9% 65.3% 17 2.6% 3.5% 25.9% 57.3% 16.7% 28.1% 52.2% 11.1% 2.6% =270 18 2 (=199) 1 17 71.0% 76.0% 44.2% 71.9% 36.2% 18.1% 65.3% 16.7% 34.1% 16.3% 47.1% 14.9% 13.8% 5.0% 3.6%

More information

untitled

untitled http://www.mofa.go.jp/mofaj/toko/visa/index.html http://www.cn.emb-japan.go.jp/jp/01top.htm http://www.shanghai.cn.emb-japan.go.jp/ http://www.guangzhou.cn.emb-japan.go.jp/ http://www.shengyang.cn.emb-japan.go.jp/jp/index.htm

More information

1 NScripter 1 [ NScripter ] NScripter NScripter 2 nathki bugyo 1 http://www.shuwasystem.co.jp/cgi-bin/detail.cgi?isbn=4-7980-1104-5 2 http://www.pulltop.com/gp04/ 2 NScripter NScripter BASIC ( ) NScLisper

More information

XX 1 01 234214 X X 1 0 1 2 3 4 2 1 4000 784 0007533 X X 1 0 1 2 3 4 2 1 4000 7 2 3 7 2 3 2 3 2 2 1 6 2 XXX-XXXX X[ 01 111 9416 39 XXX-XXXX 18.50 3.00 15.50 15.50 0.05 18.50 3.00 15.50,984 1 5 uaj39uuy

More information

コーディング基準.PDF

コーディング基準.PDF Java Java Java Java.java.class 1 private public package import / //////////////////////////////////////////////////////////////////////////////// // // // // ////////////////////////////////////////////////////////////////////////////////

More information

1 1 2 2 2.1 Java......... 2 2.2................................. 3 2.3.................................. 3 3 4 3.1....................................

1 1 2 2 2.1 Java......... 2 2.2................................. 3 2.3.................................. 3 3 4 3.1.................................... 06H082 1 1 2 2 2.1 Java......... 2 2.2................................. 3 2.3.................................. 3 3 4 3.1..................................... 4 3.2 GP.....................................

More information

2

2 1 2 10 14 945 3000 2012 3 10 4 5 6 7 8 9 10 11 12 2011 11 21 12301430 (1215 ) 13 6 27 17 () ( ) ( ) (112360) 2 (1157) (119099) ((11861231) )( ) (11641205) 3 (1277) 3 4 (1558) (1639)() 12 (1699)( ) 7 (1722)

More information

http://banso.cocolog-nifty.com/ 100 100 250 5 1 1 http://www.banso.com/ 2009 5 2 10 http://www.banso.com/ 2009 5 2 http://www.banso.com/ 2009 5 2 http://www.banso.com/ < /> < /> / http://www.banso.com/

More information

Kanji

Kanji Kanji (Lesson 7) 今 時 月 火 水 木 金 土 曜 半 分 週 毎 年 間 何 (16) If ~ follows the (e.g., おお ~), hiragana-ending of the word must follow the kanji (e.g., 大きい ). If ~ precedes the (e.g., ~ か ), other kanji must always

More information

Objective-C Objective-C C Toolbox API Cocoa Objective-C Java Carbon API C API Objective-C Java Pure Java Java AppleScript Java Objective-C Project Bui

Objective-C Objective-C C Toolbox API Cocoa Objective-C Java Carbon API C API Objective-C Java Pure Java Java AppleScript Java Objective-C Project Bui AppleScript Studio AppleScript AppleScript Stduio Objective-C Cocoa Cocoa Objective-C Java AppleScript AppleScript Studio Application Suite call method call method [of class ] [of object ] [with parameter

More information

C¥×¥í¥°¥é¥ß¥ó¥° ÆþÌç

C¥×¥í¥°¥é¥ß¥ó¥° ÆþÌç C (3) if else switch AND && OR (NOT)! 1 BMI BMI BMI = 10 4 [kg]) ( [cm]) 2 bmi1.c Input your height[cm]: 173.2 Enter Input your weight[kg]: 60.3 Enter Your BMI is 20.1. 10 4 = 10000.0 1 BMI BMI BMI = 10

More information

平成21年度

平成21年度 ..................... 1 1 2 2 3 4 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 1 1 2 2 3 4 5 6 7 8 9 10 11 1 1 12 13 2 14 3 4 15 16 17 18 19 6 20 21 22 23 24 9 10 25 26 27 28 29 30 31 32 33 34 35 36

More information

presen.gby

presen.gby kazu@iij.ad.jp 1 2 Paul Graham 3 Andrew Hunt and David Thomas 4 5 Java 6 Java Java Java 3 7 Haskell Scala Scala 8 9 Java Java Dean Wampler AWT ActionListener public interface ActionListener extends EventListener

More information