-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdrill2005C.tex
11707 lines (8321 loc) · 226 KB
/
drill2005C.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
65
66
67
68
69
70
71
72
73
74
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%\documentclass[a5j]{jarticle}
\documentclass[12pt,a4j]{jarticle}
\usepackage[dvipdfmx]{graphicx}
\usepackage{multicol}
\usepackage{times}
\usepackage{fancybox}
%\usepackage{ulem}
\usepackage{longtable}
\makeatletter
%%
%% my myanswer def
%%
\newif\if@myansweropen
\global\@myansweropenfalse
\newwrite\@filemyanswer
\def\@openmyanswer{%
%\immediate\openout\@filemyanswer=\jobname.\thesection.kai\relax%ファイルのオープン
\immediate\openout\@filemyanswer=\jobname.kai\relax%ファイルのオープン
\global\@myansweropentrue}%ファイルをオープンしたフラグを立てる
\def\themyanswer{%
\immediate\closeout\@filemyanswer%ファイルをクローズ
\global\@myansweropenfalse%ファイルをクローズしたフラグを立てる
\pagebreak[4]
\begin{multicols*}{2}\raggedright\parindent=1zw
%\subsection*{この章の解答}%
\section*{解答}%
%\begingroup\small\input{\jobname.\thesection.kai}\endgroup%ファイルを読み込む
\def\figsize{.6}
\begingroup\small\input{\jobname.kai}\endgroup%ファイルを読み込む
\end{multicols*}
}
\newcounter{myanser}
\setcounter{myanser}{0}
\long\def\@myanswer#1{%
\if@myansweropen%ファイルをオープンしたフラグが立っているか?
%立っていればなにもしない
\else%
\@openmyanswer%立っていなければファイルをオープン
\fi%
\addtocounter{myanser}{1}
\immediate\write\@filemyanswer{\par\noindent 問\themyanser\ :\par }%
\def\next{#1}
\immediate\write\@filemyanswer{\expandafter\strip@prefix\meaning\next}
}% ファイルに書き込む
\long\def\myanswer{\@myanswer}
\def\verbb +{\verb+}% \verb+ が \verb +に書き換えられてしまうので、代わりに\verbbを使う。
\makeatother
\raggedbottom
% a4
%\addtolength{\textwidth}{4cm}
\addtolength{\textwidth}{2cm}
\addtolength{\textheight}{3.5cm}
\addtolength{\topmargin}{-2.5cm}
%\addtolength{\evensidemargin}{-2cm}
%\addtolength{\oddsidemargin}{-2cm}
\addtolength{\evensidemargin}{-1cm}
\addtolength{\oddsidemargin}{-1cm}
\setlength{\columnseprule}{.5pt}
\setlength{\columnsep}{4zw}
% a5
% \addtolength{\textwidth}{2cm}
% \addtolength{\textheight}{1cm}
% \addtolength{\topmargin}{-2cm}
% \addtolength{\evensidemargin}{-1cm}
% \addtolength{\oddsidemargin}{-1cm}
% \setlength{\columnseprule}{0pt}
% \setlength{\columnsep}{4zw}
\makeatletter
\def\verbatim@font{%\small%\bfseries
\ttfamily}
\makeatother
%\topsep=0pt
%\def\an#1{#1}
\def\an#1{}
%\def\ex#1{\noindent\hfill{\small #1}}
\long\def\ex#1{
\begin{center}
\ovalbox{
\hspace{1ex}
\begin{minipage}{.8\linewidth}
#1
\end{minipage}
\hspace{1ex}
}
\end{center}
}
\def\ds{\displaystyle}
\def\subst#1#2{$\ds #1$
\ $\longrightarrow$\
\underline{\hbox to 5cm{\ttfamily #2}}}
\makeatletter
\setcounter{section}{1}
\def\mysection#1{
%\ifnum \thesection > 1 \themyanswer \par \fi
\pagebreak[4]
\vspace{10ex}\noindent{\vbox{\noindent\rule{\linewidth}{1.5ex}\\
\hbox to .95\linewidth{\hfill \bfseries\Huge%\Large
\thesection.\ #1\hfill}\\
\rule{\linewidth}{1.5ex}
}}
\addcontentsline{toc}{section}{\thesection. #1}
\addtocounter{section}{1}
}
\makeatother
\newcounter{toi}
\setcounter{toi}{0}
\makeatletter\def\@currentlabel{\thetoi}\makeatother
\def\toi{%
%\subsubsection*{問\thetoi}
\bigskip\bigskip\noindent
\addtocounter{toi}{1}
\shadowbox{\bfseries\large 問\thetoi}
%\addcontentsline{toc}{subsubsection}{問\thetoi}
\nopagebreak[4]\bigskip\nopagebreak[4]
}
%\def\tois{%
%%\subsubsection*{問\thetoi}
%\bigskip\bigskip\noindent
%\addtocounter{toi}{1}%
%\shadowbox{\bfseries\large 問\thetoi} {\raisebox{1.5ex}{(スキップ可)}}
%%\addcontentsline{toc}{subsubsection}{問\thetoi}
%\nopagebreak[4]\bigskip\nopagebreak[4]
%}
\def\figsize{.85}
\def\flow#1{\bigskip\begin{center}\includegraphics[scale=\figsize]{flowchart/#1}\end{center}\bigskip}
\def\flowl#1{\bigskip\begin{flushleft}\includegraphics[scale=\figsize]{flowchart/#1}\end{flushleft}\bigskip}
%\def\pad#1{\bigskip\begin{center}\includegraphics[scale=\figsize]{pad/#1}\end{center}\bigskip}
\def\pad#1{\bigskip\begin{flushleft}\includegraphics[scale=\figsize]{pad/#1}\end{flushleft}\bigskip}
%\def\spd#1{\bigskip\begin{center}\includegraphics[scale=\figsize]{spd/#1}\end{center}\bigskip}
\def\spd#1{\bigskip\begin{flushleft}\includegraphics[scale=\figsize]{spd/#1}\end{flushleft}\bigskip}
\begin{document}
%\thispagestyle{empty}
\begin{titlepage}
\mbox{}
\vfill
\Huge\bfseries
\hfill C言語
\hfill 問題集
\bigskip
\Large
% \hfill\today
\vfill
\mbox{}
\end{titlepage}
\thispagestyle{empty}
\newpage
%\mbox{}
%\newpage
\pagenumbering{roman}
%\begin{multicols}{2}\small
%\tableofcontents
%\end{multicols}
%\newpage
\subsubsection*{単語英日対訳}
{\setlength{\columnsep}{.5zw}
\begin{multicols}{3}
{\scriptsize
\begin{verbatim}
ANSI standard ANSI規格
ASCII code アスキーコード
I/O 入出力
addition 加算
address アドレス
address-of operator アドレス演算子
administrator 管理者
allocate 割り当て
angle brackets <>括弧
argument (実)引数
arithmetic operator 算術演算子
array 配列
assign 代入
assignment operator 代入演算子
binary 二進数
binary file バイナリファイル
binary operator 二項演算子
bit ビット
bitwise operator ビット演算子
block ブロック
body 本体
braces {}括弧
brackets []括弧
byte バイト
calculate 計算
carriage return 改行
cast キャスト
character 文字
class クラス
code プログラムコード
colon :コロン
comarison operator 比較演算子
comma ,コンマ
comment 注釈 コメント
compatible 互換性
compiler コンパイラ
complement 補数
compute 計算
constant 定数
data type 型
debug デバッグ
decimal 10進数
declaration 宣言
decrement デクリメント
default デフォルト
definition 定義
dereference operator 間接参照演算子
device デバイス
digit 数字
dimension 次元
directive 命令
display 表示
division 除算
double quote "ダブルクオート
dynamic 動的
element 要素
empty statement 空文
enumerate 列挙
equivalent 等価
error エラー
evaluation 評価
executable 実行可能な
execute 実行
expression 式
field フィールド
floating number 浮動小数点数
free 解放
function 関数
function call 関数呼び出し
global 大域
header file ヘッダファイル
hexadecimal 16進数
high level language 高級言語
implementation 実装
increment インクリメント
index 添字
indirection operator 間接参照演算子
initialize 初期化
instruction 命令
integer 整数
invoke 関数呼び出し
iteration 反復
keywords reserved 予約語
left value 左辺値
library ライブラリ
line feed 改行
link リンク
list プログラムリスト
local 局所
logical operator 論理演算子
loop ループ 繰り返し
low level language 低級言語
machine language 機械語
macro マクロ
member メンバ
memory メモリ
mode モード
modifier 修飾子
modulus 法
multiplication 乗算
negative 負
nest ネスト 入れ子
newline 改行
null ヌル
null character null文字
null statement null文
number 数字
numeric number 数値
object オブジェクト
object file オブジェクトファイル
octal 8進数
operation 演算
operator 演算子
parameter (仮)引数
parenthes ()括弧
pass 渡す
pointer ポインタ
positive 正
preprocessor プリプロセッサ
print 表示
program プログラム
programming language プログラミング言語
prototype プロトタイプ
quote 'クオート
random access ランダムアクセス
real number 実数
recursion 再帰
recursive function 再帰関数
reference 参照
relational operator 関係演算子
release 解放
remainder 剰余
return value 返値
right value 右辺値
run 実行
runtime 実行時
scalar スカラー
scope スコープ 有効範囲
screen 画面
semicolon ;セミコロン
sort ソート
specifier 指定子
standard input 標準入力
standard output 標準出力
statement 文
static 静的
storage 記憶
stream ストリーム
string 文字列
structure 構造体
structured programming 構造化プログラミング
subscript 添字
substitution 代入
subtraction 減算
syntax 構文
terminal 画面
text テキスト
unary operator 単項演算子
union 共用体
user ユーザー
value 値
variable 変数
vector ベクトル
void void
warning 警告
word ワード
\end{verbatim}
}
\end{multicols}
%"
}
\clearpage
\tableofcontents
\pagenumbering{arabic}
\setcounter{page}{1}
\mysection{式の評価}
\toi
「評価」とは ○\hspace{-1.1zw} 1 {\bfseries 計算すること}である。
\ex{例:{\ttfamily 1+1}の評価結果は{\ttfamily 2}}
次のC言語の式を評価せよ。
\begin{multicols}{2}
\begin{verbatim}
1 + 2
2 - 1
2 * 3
10 / 5
1
2.5
22 * 3.3
15 - 21
33.3 / 3
10.2 + 5.1
1000
-12.5
\end{verbatim}
\end{multicols}
ここで「{\ttfamily *}」「{\ttfamily /}」は
それぞれ乗算(×)、除算(÷)を表す演算子である。
(注:C言語の式の中では×や÷の文字は使えない)
\myanswer{
3, 1, 6, 2, 1, 2.5, 72.6, -6, 11.1, 15.3, 1000, -12.5
}
\toi
「評価」とは ○\hspace{-1.1zw} 2 {\bfseries 判定すること}
(大小や同異などを)である。
判定結果は、正しい(真)ならば1、間違っている(偽)ならば0
で表す。
\ex{例:1は0より大きく{\ttfamily 1>0}は正しいので、
{\ttfamily 1>0}の評価結果は{\ttfamily 1}(真)である。
また{\ttfamily 1!=0}の評価結果は{\ttfamily 1}(真)、
{\ttfamily 1!=1}の評価結果は{\ttfamily 0}(偽)である。
}
次の式を評価せよ。
\begin{multicols}{2}
\begin{verbatim}
0 < 1
3 > -1.5
-3 >= -10
-1 <= -3
3.4 == 3.4
1.0 != 10
0 < -1
1.0 != 10.0
-3 >= 10
0.34 == 3.4
3 < -1.5
-11.1 <= -33.3
\end{verbatim}
\end{multicols}
ここで「{\ttfamily ==}」「{\ttfamily >=}」「{\ttfamily <=}」
はそれぞれ等号(=)、以下(≧)、以上(≦)を表す演算子である。
また「{\ttfamily !=}」は非等号(≠)を表す演算子である。
(注:C言語の式の中では=≧≦≠等の文字は使えない)
\myanswer{
1, 1, 1, 0, 1,
1, 0, 1, 0, 0,
0, 0
}
\toi
「評価」は基本的に左から行う。
\ex{例:{\ttfamily 1+2+4}の評価の場合。
まず{\ttfamily 1+2}を評価すると{\ttfamily 3}になる。
次に{\ttfamily 3+4}を評価し、{\ttfamily 7}になる。}
次のC言語の式を評価せよ。
\begin{multicols}{2}
\begin{verbatim}
-2 + 4 - 3.5
3 - 4 + 18
3 * 8 / 4
10 / 2
10 / 2 / 5
10 / 2 * 5
1.1 + 2 > 0.1
5 * 2 <= 10.2
3 - 4 == 1
2 - 3 != 1
-3.5 - 2 + 4
3-4+18
3 * 8/4
100 / 20
10 / 2/5
10/2 >= 5
1.1 + 0.1 < 1.1
55 * 2 <= 110.2
3-4 != 1
2-3 == 1
\end{verbatim}
\end{multicols}
\myanswer{
-1.5, 17, 6, 5, 1, 25,
1, 1, 0, 1, -1.5,
17, 6, 5, 1, 1,
0, 1, 1, 0
}
\toi
「評価」には優先順位がある。
優先順位が高いものから評価を行う。
優先順位が同じ場合、左から評価する。
\ex{例:{\ttfamily 1+2*4}の評価の場合。
まず{\ttfamily 2*4}を評価すると{\ttfamily 8}になる。
次に{\ttfamily 1+8}を評価し、{\ttfamily 9}になる。}
演算子の優先順位を調べて、次のC言語の式を評価せよ。
\begin{multicols}{2}
\begin{verbatim}
-2 + 4 * 3
10 / 2 - 5
2 + 8 * 4 - 2
2 * 4 - 3 + 18 / 2 + 1
0 < 1 + 2
10 - 2 > 5 * 2
2 - 3.5 <= 3 + 1.2
10 - 2 == 5 * 2 - 2
10 + 2 != 5 * 2 + 2
-2*4 + 3
10-20 / 5
2*8 - 4*2
2*4-3+18 / 2+1
0 +1 < 2
10 - 2>5 * 2
2 - 3.5<=3+ 1.2
5 * 2-2 == 10 - 2
10 + 2 != 5 * 2+2
\end{verbatim}
\end{multicols}
\myanswer{
10, 0, 32, 15, 1, 0, 1, 1, 0, -5,
6, 8, 15, 1, 0, 1, 1, 0
}
\toi
「評価」には優先順位がある。
式中の括弧「{\ttfamily (}」と「{\ttfamily )}」で括られた部分は先に評価する。
大括弧、中括弧は使えないので、すべて小括弧のみで表す。
\ex{例:{\ttfamily (1+2)*4}の評価の場合。
まず{\ttfamily (1+2)}を評価すると{\ttfamily 3}になる。
次に{\ttfamily 3*4}を評価し、{\ttfamily 12}になる。}
演算子の優先順位を調べて、次のC言語の式を評価せよ。
%\newpage
\begin{multicols}{2}
\begin{verbatim}
-2 * (4 - 3)
24 / ((2 - 5) * 4)
-(8 + (3 * 8)) / 4
10 / (2 * 5)
40 / (-(20 / 5))
2 * (4 - 3 + 17) / (2 + 1)
(1 + (1 + (1 + (1 + (2 * 3)))))
10 < (1 + 2) * 3
(5 > 2)
(5 > 2) + 1
(5 > 2) + (3 - 2 != 1)
2 == 5 - 3
4 * (2 == 5 - 3) - 1
(4 < 5)
(4 < 5) < 6
4 < (5 < 6)
4 < 5 < 6
2 < 3 > 1
\end{verbatim}
\end{multicols}
\myanswer{
-2, -2, -8, 1, -10, 12, 10, 0,
1, 2, 1, 1, 3, 1, 1, 0, 1, 0
}
\toi
「評価」できるC言語の式の形は、数学の数式とは異なる。
\ex{例:分数は、分母と分子を括弧()で括り、
除算演算子/で表す。
%√やlogや冪乗などはC言語の数学関数を使う。
}
次のC言語の式を数学の数式に(除算は分数で)書き直せ。
また、数学の数式をC言語の式に書き直せ。
\begin{eqnarray*}
\mbox{C言語の式} && 数学の数式\\
\mbox{\ttfamily -2 + 15 / 3} &\rightarrow& -2 + \frac{15}{3}\\
\rule[-3ex]{0pt}{8ex}\mbox{\ttfamily 10 / 3 + 1} &\rightarrow& \\
\rule[-3ex]{0pt}{8ex}\mbox{\ttfamily 2 * 5 / 2 * 5} &\rightarrow& \\
\rule[-3ex]{0pt}{8ex}\mbox{\ttfamily 9 / 3 / 3 - 1} &\rightarrow& \\
\rule[-3ex]{0pt}{8ex}\mbox{\ttfamily 9 / (3 / 3) - 1} &\rightarrow& \\
\rule[-3ex]{0pt}{8ex}\mbox{\ttfamily 1 + 3 * 4 / 2 - 10} &\rightarrow& \\
\rule[-3ex]{0pt}{8ex}\mbox{\ttfamily (1 + 3) * (4 / 2) - 10} &\rightarrow& \\
\rule[-3ex]{0pt}{8ex}\mbox{\ttfamily (1 + 3) / (4 * 2) - 10} &\rightarrow& \\
\rule[-3ex]{0pt}{8ex}\mbox{\ttfamily } &\rightarrow& 1 \div 2 \times 4\\
\rule[-3ex]{0pt}{8ex}\mbox{\ttfamily } &\rightarrow& 1 - 2 \div 2 \times 4 + 3\\
\rule[-3ex]{0pt}{8ex}\mbox{\ttfamily } &\rightarrow& (1 - 2) \div 2 \times (4 + 3)\\
\rule[-3ex]{0pt}{8ex}\mbox{\ttfamily } &\rightarrow& 1 + \frac{1 - 3}{\frac{2}{4} + 1} - 2 \\
\rule[-3ex]{0pt}{8ex}\mbox{\ttfamily } &\rightarrow& 1 + [1 + \{1 + (2 - 3)\}]\\[2ex]
\rule[-3ex]{0pt}{8ex}\mbox{\ttfamily } &\rightarrow& \frac{\frac{1}{4}-\frac{4}{2}}{-(1-\frac{3}{2})} + \frac{6}{2}
\end{eqnarray*}
\myanswer{
$\frac{10}{3}+1$, $\frac{2\times5}{2}\times5$,
$\ds\frac{\frac{9}{3}}{3}-1$,
$\ds\frac{9}{\frac{3}{3}}-1$,
$1+\frac{3\times4}{2}-10$,
$(1+3)\times\frac{4}{2}-10$,
$\frac{1+3}{4\times2}-10$,
{\ttfamily
1 / 2 * 4,
1 - 2 / 2 * 4 + 3,
(1-2) / 2 * (4+3),
1 + (1-3)/(2/4 + 1) - 2,
1 + (1 + (1 + (2 - 3))),
-(1/4 - 4/2)/(1 - 3/2) + 6/2
}
}
\toi
演算子{\ttfamily +,-,*,==,!=}は可換である。
\ex{例:{\ttfamily 1+2}は{\ttfamily 2+1}と等しい。}
次の二つのC言語の式の評価結果は同じか違うか。
同じなら○、違うなら×で答えよ。\\
\begin{center}
\noindent{\ttfamily
\begin{tabular}{|l|l|c|}\hline
式1 & 式2 & ○,×\\ \hline\hline
1 + 3 & 3 + 1 & \hbox to 1cm{}\\ \hline
3 * 5 & 5 * 3 & \\ \hline
3 + 3 * 5 & 5 * 3 + 3 & \\ \hline
3 * 7 / 3 & 7 / 3 * 3 & \\ \hline
8 / 3 / 3 & 8 / (3 * 3) & \\ \hline
(3 + 3) / 7 & 3 + 3 / 7 & \\ \hline
3 + 3 / 7 & 3 + (3 / 7) & \\ \hline
8 / 3 * 3 & 8 / (3 * 3) & \\ \hline
(5 + 3) / (7 + 3) & 5 + 3 / 7 + 3 & \\ \hline
5 + 3 * 7 + 3 & (5 + 3) * 7 + 3 & \\ \hline
2 / 1.12 == 4 & 4 == 2 / 1.12 & \\ \hline
4 != 1.12 + 2& 2 + 1.12 != 4 & \\ \hline
3 * 5 & 5*3 & \\ \hline
1+2 * 3 & 1 + 2*3 & \\ \hline
3+3 / 7 & 3 + 3/7 & \\ \hline
12 / 2 / 3 & 12 / 3 / 2& \\ \hline
1 - 2 & -2 + 1& \\ \hline
2 * (3 + 4) & 2 * 3 + 4 & \\ \hline
\end{tabular}
}
\end{center}
\myanswer{
○○○
×○×○×××
○○○○○○○×
}
\mysection{論理式の評価}
二つの真偽の論理関係には
論理積(AND)と論理和(OR)がある。
それぞれの真偽値表は次の通り。
\begin{center}
\begin{tabular}{c@{ AND }c|c}\hline
& & 結果 \\\hline
0 & 0 & 0 \\
0 & 1 & 0 \\
1 & 0 & 0 \\
1 & 1 & 1 \\\hline
\end{tabular}
\hspace{.1\linewidth}
\begin{tabular}{c@{ OR }c|c}\hline
& & 結果 \\\hline
0 & 0 & 0 \\
0 & 1 & 1 \\
1 & 0 & 1 \\
1 & 1 & 1 \\\hline
\end{tabular}
\end{center}
C言語において、
ANDまたはORを表す論理演算子はそれぞれ {\ttfamily \&\&}, {\ttfamily ||}である。
\ex{例:{\ttfamily (1>0)\&\&(3>0)}の場合、
{\ttfamily 1>0} は{\ttfamily 1}(真)、
{\ttfamily 3>0} は{\ttfamily 1}(真)なので、
評価結果は{\ttfamily 1}(真)。
{\ttfamily (1<0)\&\&(3>0)}の評価結果は{\ttfamily 0}(偽)。
{\ttfamily (1<0)||(3>0)}の評価結果は{\ttfamily 1}(真)。
{\ttfamily (1<0)||(3<0)}の評価結果は{\ttfamily 0}(偽)。}
論理演算子の場合も、優先順位が同じなら左から評価する。
\toi
演算子の優先順位を調べて、次のC言語の式を評価せよ。
\begin{verbatim}
(0 < 1) && (0 > 1)
3 > 2 - 1 && 5 <= 6 - 1
3 == 2 - 1 || 5 != 6 - 1
((0 < 1) && (0 > 1)) || (0 < 2)
2 > 0 && 0
1 && 3 <= 4
1 && 1
1 && 0
1 || 0 && 1
1 && (0 || 1)
(0 && 0) || 1
0 && (0 || 1)
3 + ((0 > 1) || (0 < 3))
(3 > 1 && 5 >= -1) * 5
\end{verbatim}
\myanswer{
0, 1, 0, 1, 0, 1, 1, 0, 1, 1,
1, 0, 4, 5
}
\toi
否定(NOT)を表す演算子は {\ttfamily !} である。
否定演算子は、式の前に置く。
\ex{例:{\ttfamily !(1>0)}の場合、
{\ttfamily 1>0}は{\ttfamily 1}(真)なので、評価結果は{\ttfamily 0}(偽)。
{\ttfamily !(1>2)}の場合、
{\ttfamily 1>2}は{\ttfamily 0}(偽)なので、評価結果は{\ttfamily 1}(真)。}
演算子の優先順位を調べて、次のC言語の式を評価せよ。
\begin{verbatim}
(0 < 1) && !(0 > 1)
!(3 > 2 && 5 <= 6)
!(5 != 6 - 1)
!(!(!(2 > 0)))
!0
!(1 && 1)
!!!1
1 && !1
\end{verbatim}
\myanswer{
1, 0, 1, 0, 1, 0, 0, 0
}
\toi
次の式「\verb+ a > 2 && a < 4 +」
と等価な式を、\verb+&&+を使わずに書け。
(ヒント:ド・モルガンの法則)
%「\verb+!( +\fbox{\hbox to 13em{\rule[.5ex]{0pt}{1ex}}} \verb+ )+」
%% !(a <= 2 || a >= 4)
%がある。空欄を埋めよ。
\myanswer{
\verb !(a<=2||a>=4)
}
%\newpage
\toi
次の数学の条件式をC言語の式に書き直せ。
また、C言語の式を数学の条件式に書き直せ。
\begin{eqnarray*}
数学の条件式 && \mbox{C言語の式}\\
3 \le 2 かつ 4 \ge 5 &\rightarrow& \mbox{\ttfamily 3 <= 2 \&\& 4 >= 5}\\
3 > 4 または -2 < 6&\rightarrow& \\
&\rightarrow& \mbox{\ttfamily 5 > 4 \&\& 4 > 3}\\
3 \ge 2 \ge 1 &\rightarrow& \\
\end{eqnarray*}
\myanswer{
{\ttfamily 3>4 || -2<6},\quad
$5>4>3$,\quad
{\ttfamily 3>=2 \&\& 2>=1}
}
\toi
\label{toi:evaluation}
「評価」において、「真」は1である(真$\longrightarrow$1)が、
1だけではなく「0以外」はすべて「真」である(真$\longleftarrow$0以外)。
また、0の時のみ偽である(偽$\longleftrightarrow$ 0)。
\ex{例:{\ttfamily 2\&\&(3>0)}の評価結果は{\ttfamily 1}(真)。
{\ttfamily !2}の評価結果は(2が真だからその逆となり){\ttfamily 0}(偽)。
}
演算子の優先順位を調べて、次のC言語の式を評価せよ。
\begin{verbatim}
2 && 1
-2 || !8
3 + 4 * 2 || 4 - 3 - 1
(3 + (0 > 1)) || (0 < 3)
!0 + !2
!(2 + 3) * 4
1 + 2 + (3 < 4)
1 + 2 + (3 < 4) < 2
3 && 2 && -1 && 8 && 0
(3 > 1) && 5
3 > (1 && 5)
\end{verbatim}
\myanswer{1, 1, 1, 1, 1, 0, 4, 0, 0, 1, 1}
\toi
\label{toi:pmoperators}
正負を表す演算子はそれぞれ {\ttfamily +, -} である。
{\ttfamily -}を連続して適用する場合
(または{\ttfamily +}を連続して適用する場合)
には空白をあける({\ttfamily --,++}等は不可、{\ttfamily +-,-+}等は可)。
\ex{例:{\ttfamily (- -2)}の評価結果は{\ttfamily 2}}
次のC言語の式を評価せよ。
\begin{multicols}{2}
\begin{verbatim}
-(2)
-(-2)
- - 2
- - -2
+2
+(-2)
+ - 3
+(-(+(-2)))
+-+-2
3 + - 2
-+-+3+-+-2
+ + - + 3
4 / (-2)
4 / -2
4 / -(2 - 1)
\end{verbatim}
\end{multicols}
\myanswer{-2, 2, 2, -2, 2, -2, -3, 2, 2, 1, 5, -3, -2, -2, -4}
\toi
次のC言語の式は正しくない。間違いを指摘せよ。
\begin{verbatim}
3 <> 2
4 > = 2
4 => 2
3 !== 1 + 2
4 - 1 = = 3
2 =< 3
4 \ 2
--2
+--+2
\end{verbatim}
\myanswer{{\ttfamily
<>という演算子はない。
>と=の間が空いている。
=>,!==という演算子はない。
=と=の間が空いている。
=<という演算子はない。
/の間違い。
--が連続している。
}
}
\mysection{変数、代入}
「変数」とは評価結果を保持するために使う記号である。
変数に評価結果の値を保持させることを「代入」と呼び、
代入演算子「{\ttfamily =}」を使う。
{\ttfamily =}の左辺に変数を書き、右辺に評価する式を書く。
\ex{例:変数{\ttfamily x}に{\ttfamily 2}
を代入するには{\ttfamily x=2}と書く。
{\ttfamily y=3+4}と書くと、
{\ttfamily 3+4}の評価結果{\ttfamily 7}が
{\ttfamily y}に代入される。}
{\ttfamily y=3+4}のような、
変数に代入するように書いたものを「代入文」と呼ぶ。
\toi
それぞれ変数に式の評価結果を代入する代入文を書け。