2 Eclipse 2.1 Eclipse 1. Eclipse 2. 3 ( 4) E:Yworkspace OK 3 Eclipse 4 3. Eclipse 5 5 Eclipse Eclipse 2. 7 C 2
|
|
|
- ゆずさ もちやま
- 7 years ago
- Views:
Transcription
1 3: 1 1. PC 2. Phantasys ( 1) 1 PC 2 Windows 3. Windows ID ( 2) 4. Web (Firefox Internet Explorer) 5. A Web 1 7. USB PC USB ( ) 8. Web PC USB ( ) 9. E:Y USB USB USB USB USB 3. Web USB 4. USB Web 1 Not Found 1
2 2 Eclipse 2.1 Eclipse 1. Eclipse 2. 3 ( 4) E:Yworkspace OK 3 Eclipse 4 3. Eclipse 5 5 Eclipse Eclipse 2. 7 C 2
3 (a) test Hello World ANSI C MinGW GCC 8(b) (a) (b) 8 3
4 Eclipse 10 test Build complete for project test Time consumed: 406 ms !!!Hello World!!! 2 test src test.c 4
5 #include <stdio.h> 2 3 int main(void) { 4 5 printf("hello World!\n"); 6 7 return 0; 8 } Program Hello World! Eclipse 2.4 Hello World! delete delete 4 5
6 Program 2 1 #include <stdio.h> 2 3 int main(void) { 4 5 int a, b, c; 6 7 a = 2; 8 b = 3; 9 10 c = a + b; printf("total= %d\n", c); return 0; 15 } 5 a,b,c 7 a 2 8 b 3 10 a+b(a b ) c c 12 ( %d ) 1 #include <stdio.h> 2 3 int main(void) { 4 5 int c, i; 6 7 c = 0; 8 9 for(i=0;i<10;i++){ 10 c = c + 2; 11 } printf("total= %d\n", c); return 0; 16 } Program 3 9 for(i=0; i<10; i++) { } i 0 i 1 i c 0 for 10 c = c + 2; c = c + 2; c 2 c c for(i=0; i<20; i++) i for(i=0; i<10; i++) 9 for(i=0; i<20; i++) 19 for(i=1; i<=10; i++) i 1 i 1 i 10 i 10 6
7 3 Web 3.1 Web 1. Eclipse main1.zip main1.c 3.2 7
8 1 #include <stdio.h> 2 #include <cv.h> 3 #include <highgui.h> 4 14 Program 4 5 int main(void) 6 { 7 // cimageresult 8 IplImage *cimageresult = cvcreateimage(cvsize(640,480), IPL_DEPTH_8U, 3); 9 10 // p i c t u r e "sample.jpg" 11 IplImage *picture = cvloadimage("sample.jpg", CV_LOAD_IMAGE_COLOR); // p i c t u r e c I m a g e R e s u l t 14 cvresize(picture, cimageresult, CV_INTER_LINEAR); // "My Window1" 17 cvnamedwindow ("My Window1", CV_WINDOW_AUTOSIZE); cvshowimage("my Window1", cimageresult); // cimageresult "My Window1" cvwaitkey (0); // cvdestroyallwindows (); // return 0; 26 } OpenCV 8 cimageresult 11 picture 11 picture sample.jpg 14 picture cimage q 1 #include <stdio.h> 2 #include <cv.h> 3 #include <highgui.h> 4 5 int main(void) 6 { Program 5 8
9 7 // cimage 8 IplImage *cimage = cvcreateimage(cvsize(640,480), IPL_DEPTH_8U, 3); 9 // gimage 10 IplImage *gimage = cvcreateimage(cvsize(640,480), IPL_DEPTH_8U, 1); // "My Window1" " My Window2" 13 cvnamedwindow ("My Window1", CV_WINDOW_AUTOSIZE); 14 cvnamedwindow ("My Window2", CV_WINDOW_AUTOSIZE); // 17 CvCapture *capture = cvcreatecameracapture (0); 18 // 19 cvsetcaptureproperty (capture, CV_CAP_PROP_FRAME_WIDTH, 640); 20 cvsetcaptureproperty (capture, CV_CAP_PROP_FRAME_HEIGHT,480); // for(;;){ // c I m a g e 26 cimage = cvqueryframe (capture); // c I m a g e g I m a g e 29 cvcvtcolor(cimage, gimage, CV_BGR2GRAY); cvshowimage("my Window1", cimage); // cimage "My Window1" 32 cvshowimage("my Window2", gimage); // gimage "My Window2" if (cvwaitkey (10) == q ) // q 35 break; 36 } 37 // // 40 cvreleasecapture (&capture); cvdestroyallwindows (); // return 0; 45 } cimage 29 1 cvcvtcolor(cimage, gimage, CV_BGR2GRAY); cvcvtcolor cimage gimage CV BGR2GRAY 31 My Window1 cimage 32 My Window2 gimage 3.4 My Window1 s My Window2 My Window3 p q 1 #include <stdio.h> 2 #include <cv.h> 3 #include <highgui.h> 4 5 int main(void) Program 6 9
10 6 { 7 // image 8 IplImage *image = cvcreateimage(cvsize(640,480), IPL_DEPTH_8U, 3); 9 10 // 11 IplImage *cimageresult = cvcreateimage(cvsize(640,480), IPL_DEPTH_8U, 3); 12 // 13 IplImage *gimagefg = cvcreateimage(cvsize(640,480), IPL_DEPTH_8U, 1); 14 IplImage *gimagebg = cvcreateimage(cvsize(640,480), IPL_DEPTH_8U, 1); 15 IplImage *gimagemask = cvcreateimage(cvsize(640,480), IPL_DEPTH_8U, 1); // "My Window1" " My Window2" " My Window3" 18 cvnamedwindow ("My Window1", CV_WINDOW_AUTOSIZE); 19 cvnamedwindow ("My Window2", CV_WINDOW_AUTOSIZE); 20 cvnamedwindow ("My Window3", CV_WINDOW_AUTOSIZE); // 23 CvCapture *capture = cvcreatecameracapture (0); 24 // 25 cvsetcaptureproperty (capture, CV_CAP_PROP_FRAME_WIDTH, 640); 26 cvsetcaptureproperty (capture, CV_CAP_PROP_FRAME_HEIGHT,480); char inputkey = a ; 29 // for(;;){ // i m a g e 33 image = cvqueryframe (capture); // image " My Window1" 36 cvshowimage ("My Window1", image); // s 39 if ( s == inputkey){ 40 // i m a g e g I m a g e B G 41 cvcvtcolor(image, gimagebg, CV_BGR2GRAY); 42 // cimagebg " My Window2" 43 cvshowimage ("My Window2", gimagebg); 44 inputkey = a ; 45 } // // i m a g e g I m a g e F G 50 cvcvtcolor(image, gimagefg, CV_BGR2GRAY); 51 // gimagefg gimagebg gimagemask 52 cvabsdiff(gimagefg, gimagebg, gimagemask); 53 // gimagemask 2 54 cvthreshold(gimagemask, gimagemask, 20, 255, CV_THRESH_BINARY); 55 // c I m a g e R e s u l t 56 cvsetzero(cimageresult); // g I m a g e M a s k i m a g e c I m a g e R e s u l t 59 cvcopy(image, cimageresult, gimagemask); 60 // cimageresult " My Window3" 61 cvshowimage ("My Window3", cimageresult); // p 64 if ( p == inputkey){ 65 // c I m a g e R e s u l t 66 cvsaveimage("out.jpg", cimageresult); 67 inputkey = a ; 68 } inputkey = cvwaitkey (10); 71 if ( q == inputkey) // q 72 break; 73 } 74 // // 77 cvreleasecapture (&capture); // 80 cvdestroyallwindows (); return 0; 83 }
11 33 image 36 My Window s s gimagebg ( ) gimagefg gimagefg gimagebg 52 1 cvabsdiff(gimagefg, gimagebg, gimagemask); cvabsdiff gimagefg gimagebg gimagemask 2 cvabsdiff cvthreshold(gimagemask, gimagemask, 20, 255, CV_THRESH_BINARY); 2 2 OpenCV cvcopy(image, cimageresult, gimagemask); cvcopy image cimageresult gimagemask cvsetzero cimageresult
12 4 Word PDF PDF TA 12
13 PDF Word PDF Office Adobe PDF C 12TM C-12TM001.pdf N 07TK N-07TK030.pdf pdf Word PDF PC Web Web Web 1. Web [seminar2012rep] PDF ( 13
14 5. PDF (a) (b).pdf Web open/activ manual.pdf Tel:
1 1. Program 1 OpenCV (OpenCV Sample001) 1 /* 2 - > - > - >VC++ 3 ( ) 4 C:\opencv\build\include 5 ( ) 6 C:\opencv\build\x86\vc10\lib 7 - > - > - > - >
1 1. Program 1 OpenCV (OpenCV Sample001) 1 /* 2 - > - > - >VC++ 3 ( ) 4 C:\opencv\build\include 5 ( ) 6 C:\opencv\build\x86\vc10\lib 7 - > - > - > - > 8 (240 O p e n C V ) 9 opencv_core240d.lib 10 opencv_imgproc240d.lib
OpenCV IS Report No Report Medical Information System Labratry
OpenCV 2014 8 25 IS Report No. 2014090201 Report Medical Information System Labratry Abstract OpenCV OpenCV 1............................ 2 1.1 OpenCV.......................... 2 1.2......................
5 ISMS 5 4 PC PC USB PDA 2
3 3 1 2 1 1 2 4 1 2 1 1 1 5 ISMS 5 4 PC PC USB PDA 2 16 1 16 1 4 3 PC USB 4 5 1 6 6 506 507 507 6 5000 JIS 7 3 3 8 1 4 Web 2 15 16 9 1 OK 2 10 20 3 10 4 19 100 1 0 100 1000 1 11 3 10 50 A B C 3 4 10 50
TA TA TA abcdefgh abcdefgh C PC Wii bluetooth 2.2 Bluetooth USB Princeton PTM-UBT3S 1 1
1 22 (2) TA: 2010 12 13 1 OpenGL Wii Wii OpenGL USB (3DCG) 1.1 http://www.cyber.t.u-tokyo.ac.jp/~kuni/enshu2010/ URL USB 2 2 1.2 TA 16 15 TA TA [email protected] 20101213 abcdefgh abcdefgh
I. Backus-Naur BNF S + S S * S S x S +, *, x BNF S (parse tree) : * x + x x S * S x + S S S x x (1) * x x * x (2) * + x x x (3) + x * x + x x (4) * *
2015 2015 07 30 10:30 12:00 I. I VI II. III. IV. a d V. VI. 80 100 60 1 I. Backus-Naur BNF S + S S * S S x S +, *, x BNF S (parse tree) : * x + x x S * S x + S S S x x (1) * x x * x (2) * + x x x (3) +
untitled
3sweb ASP & 2009/5/18 DN01 _1 DN02)_1 URL Web Favicon DN03 _1 Web Favicon DN04)_1 ( ) DN05 _1 EXCEL DN06)_1 EXCEL DN07 _1 URL DN08)_1 DN09 _1 ( ) (DN10)_1 ( ) DN11 _1 ( ) (DN12)_1 ( ) DN13 _1 (DN14)_1
Ⅰ Report#1 Report#1 printf() /* Program : hello.c Student-ID : 095740C Author UpDate Comment */ #include int main(){ : Yuhi,TOMARI : 2009/04/28(Thu) : Used Easy Function printf() 10 printf("hello,
C言語によるアルゴリズムとデータ構造
Algorithms and Data Structures in C 4 algorithm List - /* */ #include List - int main(void) { int a, b, c; int max; /* */ Ÿ 3Ÿ 2Ÿ 3 printf(""); printf(""); printf(""); scanf("%d", &a); scanf("%d",
/* do-while */ #include <stdio.h> #include <math.h> int main(void) double val1, val2, arith_mean, geo_mean; printf( \n ); do printf( ); scanf( %lf, &v
1 http://www7.bpe.es.osaka-u.ac.jp/~kota/classes/jse.html [email protected] /* do-while */ #include #include int main(void) double val1, val2, arith_mean, geo_mean; printf( \n );
£Ã¥×¥í¥°¥é¥ß¥ó¥°ÆþÌç (2018) - Â裵²ó ¨¡ À©¸æ¹½Â¤¡§¾ò·ïʬ´ô ¨¡
(2018) 2018 5 17 0 0 if switch if if ( ) if ( 0) if ( ) if ( 0) if ( ) (0) if ( 0) if ( ) (0) ( ) ; if else if ( ) 1 else 2 if else ( 0) 1 if ( ) 1 else 2 if else ( 0) 1 if ( ) 1 else 2 (0) 2 if else
4 15 4.1..................................... 15 4.2....................................... 15 4.2.1................................... 15 4.2.2......
2011 1 26 1 3 2 3 2.1......................................... 3 2.2..................................... 3 2.3 QRedit................................. 4 2.3.1..................................... 5 2.3.2
opencv-linux Linux 1.1pre1 % tar zxvf opencv-1.1pre1.tar.gz % cd opencv %./configure --with-apps % make % su # make install 2.2 Windows Windows
OpenCV Development of Image Understanding Programs by using the OpenCV Library 1 Takekazu KATO 1 Kyoto University This paper introduces OpenCV library that is an open source library for computer vision
1-4 int a; std::cin >> a; std::cout << "a = " << a << std::endl; C++( 1-4 ) stdio.h iostream iostream.h C++ include.h 1-4 scanf() std::cin >>
1 C++ 1.1 C C++ C++ C C C++ 1.1.1 C printf() scanf() C++ C hello world printf() 1-1 #include printf( "hello world\n" ); C++ 1-2 std::cout
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
オンラインによる 「電子申告・納税等開始(変更等)届出書」 提出方法
18 2 1 OS 2 OS WWW OS Windows 2000 Professional Windows XP (Home Edition) Windows XP (Professional Edition) WWW Microsoft Internet Explorer 6.0 Windows 98 Windows Me WindowsNT OS e-tax 3 Internet Explorer
導入基礎演習.ppt
Multi-paradigm Programming Functional Programming Scheme Haskell ML Scala X10 KL1 Prolog Declarative Lang. C Procedural Lang. Java C++ Python Object-oriented Programming / (root) bin home lib 08 09
Flash Player ローカル設定マネージャー
ADOBE FLASH PLAYER http://help.adobe.com/ja_jp/legalnotices/index.html iii................................................................................................................. 1...........................................................................................................
3.1 stdio.h iostream List.2 using namespace std C printf ( ) %d %f %s %d C++ cout cout List.2 Hello World! cout << float a = 1.2f; int b = 3; cout <<
C++ C C++ 1 C++ C++ C C++ C C++? C C++ C *.c *.cpp C cpp VC C++ 2 C++ C++ C++ [1], C++,,1999 [2],,,2001 [3], ( )( ),,2001 [4] B.W. /D.M.,, C,,1989 C Web [5], http://kumei.ne.jp/c_lang/ 3 Hello World Hello
PC Windows 95, Windows 98, Windows NT, Windows 2000, MS-DOS, UNIX CPU
1. 1.1. 1.2. 1 PC Windows 95, Windows 98, Windows NT, Windows 2000, MS-DOS, UNIX CPU 2. 2.1. 2 1 2 C a b N: PC BC c 3C ac b 3 4 a F7 b Y c 6 5 a ctrl+f5) 4 2.2. main 2.3. main 2.4. 3 4 5 6 7 printf printf
講習案内パンフレット2000.PDF
1 OA Visio Visio 1 Visio VI2000-N Microsoft Visio2000 Web IN50-N Projcet2000 1 PR2000-O Project Outlook Outlook OL98-O Outlook Outlook OL98-M Outlook Access Excel PowerPoint PowerPoint Word Word 2 AC2000-O
PDF PDF Windows Vista Windows Vista Windows Windows XP Windows XP Windows Microsoft Office Excel 2007 Excel 2007 Excel Microsoft Office Excel 2003 Excel 2003 Excel Windows Internet Explorer 7 Internet
[1] #include<stdio.h> main() { printf("hello, world."); return 0; } (G1) int long int float ± ±
[1] #include printf("hello, world."); (G1) int -32768 32767 long int -2147483648 2147483647 float ±3.4 10 38 ±3.4 10 38 double ±1.7 10 308 ±1.7 10 308 char [2] #include int a, b, c, d,
tuat1.dvi
( 1 ) http://ist.ksc.kwansei.ac.jp/ tutimura/ 2012 6 23 ( 1 ) 1 / 58 C ( 1 ) 2 / 58 2008 9 2002 2005 T E X ptetex3, ptexlive pt E X UTF-8 xdvi-jp 3 ( 1 ) 3 / 58 ( 1 ) 4 / 58 C,... ( 1 ) 5 / 58 6/23( )
/* sansu1.c */ #include <stdio.h> main() { int a, b, c; /* a, b, c */ a = 200; b = 1300; /* a 200 */ /* b 200 */ c = a + b; /* a b c */ }
C 2: A Pedestrian Approach to the C Programming Language 2 2-1 2.1........................... 2-1 2.1.1.............................. 2-1 2.1.2......... 2-4 2.1.3..................................... 2-6
C
C 1 2 1.1........................... 2 1.2........................ 2 1.3 make................................................ 3 1.4....................................... 5 1.4.1 strip................................................
2 2 2 OpenGL Linux Linux Video for Linux(Video4Linux, v4l ) API Video4Linux USB IEEE1394 API Linux Video for Linux 2(Video4Linux2, v4l2 ) OpenCV API U
1 26 (2) 3DCG TA 2014 10 17 1 OpenGL USB (3DCG) OpenCV CG Augmented Reality ARToolKit 3DCG 1.1 http://www.cyber.t.u-tokyo.ac.jp/~tani/class/mech_enshu/ 1.2 TA 1.3 ( ) USB (2014/11/10( ),11( ),13( )) (2012/11/17(
1 1.1 PC PC PC PC PC workstation PC hardsoft PC PC CPU 1 Gustavb, Wikimedia Commons.
1 PC PC 1 PC PC 1 PC PC PC PC 1 1 1 1.1 PC PC PC PC PC workstation PC 1.1.1 hardsoft 1.1.2 PC PC 1.1 1 1. 2. 3. CPU 1 Gustavb, Wikimedia Commons.http://en.wikipedia.org/wiki/Image:Personal_computer,_exploded_5.svg
2 2 Gtk+ GUI (widget ) GUI Gtk+ GUI Gtk+ GUI 2.2 Gtk GUI sample1.c Web (http://www.cyber.t.u-tokyo.ac.jp/ tani/class/mech enshu/) enshu2009gui1.tar.gz
1 2009 B4 GUI TA http://www.cyber.t.u-tokyo.ac.jp/ tani/class/mech enshu/ 2008 6 11 1 1 1 4 C GUI(Graphical User Interface) X Window System GUI 5 GUI 2 Gtk+ GUI 2.1 GUI GUI GUI (event driven) GUI GUI GUI
£Ã¥×¥í¥°¥é¥ß¥ó¥°ÆþÌç (2018) - Â裶²ó ¨¡ À©¸æ¹½Â¤¡§·«¤êÊÖ¤· ¨¡
(2018) 2018 5 24 ( ) while ( ) do while ( ); for ( ; ; ) while int i = 0; while (i < 100) { printf("i = %3d\n", i); i++; while int i = 0; i while (i < 100) { printf("i = %3d\n", i); i++; while int i =
山梨県ホームページ作成ガイドライン
17 7 ...1...4...4...4...4...5...5 W3C...5...6...6...6...7...8...8...10...10...10... 11...12...12...13...13...13...14...14...14...15...15...16...16...16...16...16...17...18 15 (2003 ) 69.7 81.1 43.6 19.6
ソフトウェア Capture NX 2 クイックスタートガイド
Jp Capture NX 2 Capture NX 2 Capture NX 2 CD-ROM CD-ROM Windows Vista Ultimate Windows Mac OS Step1 Windows Capture NX 2 CD-ROM CD-ROM Mac OS Capture NX 2 CD-ROM CD-ROM Capture NX 2 Setup CD-ROM Capture
11042 計算機言語7回目 サポートページ:
11042 7 :https://goo.gl/678wgm November 27, 2017 10/2 1(print, ) 10/16 2(2, ) 10/23 (3 ) 10/31( ),11/6 (4 ) 11/13,, 1 (5 6 ) 11/20,, 2 (5 6 ) 11/27 (7 12/4 (9 ) 12/11 1 (10 ) 12/18 2 (10 ) 12/25 3 (11
θ (t) ω cos θ(t) = ( : θ, θ. ( ) ( ) ( 5) l () θ (t) = ω sin θ(t). ω := g l.. () θ (t) θ (t)θ (t) + ω θ (t) sin θ(t) =. [ ] d dt θ (t) ω cos θ(t
7 8, /3/, 5// http://nalab.mind.meiji.ac.jp/~mk/labo/text/furiko/ l (, simple pendulum) m g mlθ (t) = mg sin θ(t) () θ (t) + ω sin θ(t) =, ω := ( m ) ( θ ) sin θ θ θ (t) + ω θ(t) = ( ) ( ) g l θ(t) = C
‚æ2›ñ C„¾„ê‡Ìš|
I 8 10 10 I ( 6 ) 10 10 1 / 23 1 C ( ) getchar(), gets(), scanf() ( ) putchar(), puts(), printf() 1 getchar(), putchar() 1 I ( 6 ) 10 10 2 / 23 1 (getchar 1 1) 1 #include 2 void main(void){ 3 int
:30 12:00 I. I VI II. III. IV. a d V. VI
2018 2018 08 02 10:30 12:00 I. I VI II. III. IV. a d V. VI. 80 100 60 1 I. Backus-Naur BNF N N y N x N xy yx : yxxyxy N N x, y N (parse tree) (1) yxyyx (2) xyxyxy (3) yxxyxyy (4) yxxxyxxy N y N x N yx
FileMaker Pro 8.5 Tutorial
2004 2006 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. ScriptMaker FileMaker, Inc. FileMaker FileMaker, Inc. FileMaker
untitled
PC Internet Explorer Windows SafariMac OS X Mozilla FireFoxWindows / Macintosh Google ChromeWindows / Macintosh IE + Google Windows 1 Internet Explorer 10.x (O)(A) Internet Explorer (O) (B) (B) (B) 2 Web
2004
2008 3 20 400 1 1,222 7 1 2 3 55.8 54.8 3 35.8 6 64.0 50.5 93.5 1 1,222 1 1,428 1 1,077 6 64.0 52.5 80.5 56.6 81.5 30.2 1 2 3 7 70.5 1 65.6 2 61.3 3 51.1 1 54.0 2 49.8 3 32.0 68.8 37.0 34.3 2008 3 2 93.5
Plano-POS Ver1
1 Quick Version2.0.0 Chapter1 Chapter1-1 Chapter2 Chapter2-1 Quick--------------------------------------------------------------P.7 -----------------------------------------------------------------------P.11
WinHPC ppt
MPI.NET C# 2 2009 1 20 MPI.NET MPI.NET C# MPI.NET C# MPI MPI.NET 1 1 MPI.NET C# Hello World MPI.NET.NET Framework.NET C# API C# Microsoft.NET java.net (Visual Basic.NET Visual C++) C# class Helloworld
PowerPoint Presentation
p.130 p.198 p.208 2 double weight[num]; double min, max; min = max = weight[0]; for( i= 1; i i < NUM; i++ ) ) if if ( weight[i] > max ) max = weight[i]: if if ( weight[i] < min ) min = weight[i]: weight
FileMaker Pro Tutorial
FileMaker Pro 11 2007-2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. FileMaker, Inc. FileMaker FileMaker, Inc.
2 2 2 OpenGL (R,G,B,A) 2.1 OpenGL (x y) width height pixels void glreadpixels(glint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum t
1 24 (2) 3DCG TA 2012 10 12 1 OpenGL USB (3DCG) OpenCV 1.1 http://www.cyber.t.u-tokyo.ac.jp/~tani/class/mech_enshu/ 1.2 TA 1.3 USB (2012/11/19( ),20( )) USB 2 2 2 OpenGL (R,G,B,A) 2.1 OpenGL (x y) width
Microsoft PowerPoint - 201409_秀英体の取組み素材(予稿集).ppt
1 2 3 4 5 6 7 8 9 10 11 No Image No Image 12 13 14 15 16 17 18 19 20 21 22 23 No Image No Image No Image No Image 24 No Image No Image No Image No Image 25 No Image No Image No Image No Image 26 27 28
16 3 1....1 2....3 3....5 4....6 1....7 2....8 3....11 4....13 1....15 2....17 PRTR...20...23...30...35 1. 1 2 2. / / 29 / / 29 29 3 PRTR () () 29 29 * 29 4 3. 4 1 6 30 (1) 35 13 (2) 14 (3) PRTR 23 ID
alluniv
4 2013 4 1 1 1 1.1..................... 1 1.2........................... 1 1.3... 6 1.4... 10 1.5... 13 1.6... 15 1.7... 17 1.8.......................... 18 1.9..................... 19 2 20 2.1 ID..............................
II ( ) prog8-1.c s1542h017%./prog8-1 1 => 35 Hiroshi 2 => 23 Koji 3 => 67 Satoshi 4 => 87 Junko 5 => 64 Ichiro 6 => 89 Mari 7 => 73 D
II 8 2003 11 12 1 6 ( ) prog8-1.c s1542h017%./prog8-1 1 => 35 Hiroshi 2 => 23 Koji 3 => 67 Satoshi 4 => 87 Junko 5 => 64 Ichiro 6 => 89 Mari 7 => 73 Daisuke 8 =>. 73 Daisuke 35 Hiroshi 64 Ichiro 87 Junko
void hash1_init(int *array) int i; for (i = 0; i < HASHSIZE; i++) array[i] = EMPTY; /* i EMPTY */ void hash1_insert(int *array, int n) if (n < 0 n >=
II 14 2018 7 26 : : [email protected] 14,, 8 2 12:00 1 O(1) n O(n) O(log n) O(1) 32 : 1G int 4 250 M 2.5 int 21 2 0 100 0 100 #include #define HASHSIZE 100 /* */ #define NOTFOUND 0
Ms用.indd
2018.1 VAIOWindows 10 Pro. VAIOWindows 10 Pro. VAIO OS TPM (Trusted Platform Module) HDD *1HDD *1TPM *2 Windows Hello * VAIO PC HDD/ PC TPM PC DELETE TRUST DELETE Biz for VAIO PC BIOS VAIO VAIO PhoenixSecureWipe
情報処理概論(第二日目)
実習資料 Linux 入門講習会 九州大学情報基盤研究開発センター 注意 : この内容は najima.cc.kyushu-u.ac.jp の任意の ID で利用できますが, ファイルの削除等を含んでいるので各コマンドの意味を理解するまでは講習会用 ID で利用することをお勧めします. 1 実習 1 ログイン ファイル操作 ディレクトリの作成 ファイルの移動, コピー, 削除 ログアウト 2 ログイン
r07.dvi
19 7 ( ) 2019.4.20 1 1.1 (data structure ( (dynamic data structure 1 malloc C free C (garbage collection GC C GC(conservative GC 2 1.2 data next p 3 5 7 9 p 3 5 7 9 p 3 5 7 9 1 1: (single linked list 1
untitled
25 10 12 11 24 (1) 14 (2) 26 10 44 (3) (4) (5) 27 10 68 (6) (7) (8) 25 10 ( ) (1) (2) (3) ) city.yokohama.lg.jp city.yokohama.jp WEB WEB WEB WEB WEB WEB 1 25 10 WEB WEB (1) (2) (3) (4) 25 10 (1) WEB (2)
ohp07.dvi
19 7 ( ) 2019.4.20 1 (data structure) ( ) (dynamic data structure) 1 malloc C free 1 (static data structure) 2 (2) C (garbage collection GC) C GC(conservative GC) 2 2 conservative GC 3 data next p 3 5
1.ppt
/* * Program name: hello.c */ #include int main() { printf( hello, world\n ); return 0; /* * Program name: Hello.java */ import java.io.*; class Hello { public static void main(string[] arg)
book
Bibliotheca21 Personal 3020-7-245-30 P-26D3-A114 Bibliotheca21 Personal 01-30 OS Windows 2000 Windows Server(R) 2003 Windows XP Windows Server(R) 2008 Windows Vista(R) Windows 7 Adobe Adobe Systems Incorporated
untitled
II yacc 005 : 1, 1 1 1 %{ int lineno=0; 3 int wordno=0; 4 int charno=0; 5 6 %} 7 8 %% 9 [ \t]+ { charno+=strlen(yytext); } 10 "\n" { lineno++; charno++; } 11 [^ \t\n]+ { wordno++; charno+=strlen(yytext);}
EndNoteオンライン クイック・レファレンス・ガイド
ENDNOTE Web of SciencePubMed Google Scholar CiNii ipad Microsoft Word Cite While You Write TM EndNote EndNote Web of Science EndNote EndNote basic EndNote EndNote basic EndNote EndNote EndNote basic Web
untitled
. -28- 1 1 2-29- 11 USB -30- -31- -32- -33- -34- 11-35- 3-36- -37- 2-38- -39- -40- -41- -42- 11-43- -44- -45- 3-46- -47- 11-48- 1-49- -50- -51- -52- -53- -54- 1-55- 1 3-56- -57- -58- 11-59- -60- -61- 1-62-
名刺ファイリングOCR ユーザーズガイド
OCR OCR OCR OCR OCR 2004 9 MicrosoftWindowsWindows NT Microsoft Corporation Netscape Netscape Communications Corporation Yahoo! JAPANhttp://www.yahoo.co.jp/ Microsoft Corporation OCR i Multilingual OCR
For_Beginners_CAPL.indd
CAPL Vector Japan Co., Ltd. 目次 1 CAPL 03 2 CAPL 03 3 CAPL 03 4 CAPL 04 4.1 CAPL 4.2 CAPL 4.3 07 5 CAPL 08 5.1 CANoe 5.2 CANalyzer 6 CAPL 10 7 CAPL 11 7.1 CAPL 7.2 CAPL 7.3 CAPL 7.4 CAPL 16 7.5 18 8 CAPL
アセンブラ入門(CASL II) 第3版
CASLDV i COMET II COMET II CASL II COMET II 1 1 44 (1969 ) COMETCASL 6 (1994 ) COMETCASL 13 (2001 ) COMETCASL COMET IICASL II COMET IICASL II CASL II 2001 1 3 3 L A TEX 2 CASL II COMET II 6 6 7 Windows(Windows
1
1 1. 2 1-1. 2 3 1-2.2 4 2. 5 6 7 2-1 2-2 2-3 2-4 2-5 2-1 2-2 2-3 2-4 2-5 PDF PDF 8 P10 9 2-1. 10 2-1. 11 2-1. ( ( 12 2-1. 24 13 2-1. 3 3 14 2-1. 15 2-2. 16 17 2-2. 3 18 2-2. 19 2712 3 1000 20 2841 21 ...
r08.dvi
19 8 ( ) 019.4.0 1 1.1 (linked list) ( ) next ( 1) (head) (tail) ( ) top head tail head data next 1: NULL nil ( ) NULL ( NULL ) ( 1 ) (double linked list ) ( ) 1 next 1 prev 1 head cur tail head cur prev
IT 1. IT 2. 2.1. IT 2.2. SKYSEA Client View Government License Light Edition Sky 1500 28 2 15 12 3. 4. 28 3 25 1 5. 5.1. (1) 28 4 1 (2) (3) (4) ISO27001 P (5) ISO/IEC20000 (6) USB 1 (7) OS (8) 1 CPU 4
18 C ( ) hello world.c 1 #include <stdio.h> 2 3 main() 4 { 5 printf("hello World\n"); 6 } [ ] [ ] #include <stdio.h> % cc hello_world.c %./a.o
18 C ( ) 1 1 1.1 hello world.c 5 printf("hello World\n"); 6 } [ ] [ ] #include % cc hello_world.c %./a.out Hello World [a.out ] % cc hello_world.c -o hello_world [ ( ) ] (K&R 4.1.1) #include
立ち読みページ
1 Word 1-1 33 1-2 45 1-3 54 1-4 Office Word 2007 66 1 1-1 1-1-1 33 Word FAX 1 1 2 1 Office Windows 7 Windows Vista Windows XP 3 4 5 6 34 2 Office Microsoft Office Online 35 1-1-2 1 2 3 4 5 6 2 1 1 36 37
