学年

質問の種類

英語 高校生

英語の長文読解です 分からないので教えて欲しいです、、、

Chapter Reading 12 r 10H 8-8.6 6 4 2 3.7 2 The Number of Books Read in a Month in Japan 1.7 10.0 9.9 4.2 19 3.7 1.8 10.5 10.1 42 4.1 11.4 114 112 3.9 1.7 1.6 1.6 2 時制 文化 Time 30 minutes 4.0 15 4.2 1.4 111 9.8 4.5 4.3 1.5 13 0 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 (年) 200 words Elementary school students Junior high school students High school students Reading can take you to new places. Books are small and light, but they can change your world. watching TV or using smartphones. However, most people spend more time Publishing companies* want people to read more books. Some of s them are trying new shapes of books. An American publisher* called Dutton* released mini books in October 2018. They are as big as a smartphone and as thick as a person's thumb. You can hold them in one hand and flip* the pages like a smartphone screen. Although they are new in the U.S., they have been popular in Europe for several years. 10 They are popular because they are light, cheap, and environmentally- friendly. * publishing company [] publisher [] flip 「~をめくる」 bunko paperback [**] ⑧15分 Japan's book industry is also looking for new ideas. Book sales were more than ¥2 trillion in the 1990s. But now they are falling every year. Japan already has cheap and light books, such as bunko paperbacks*. 15 However, Japanese people are reading less than before. In 2016, almost 50% of university students said they read for 0 minutes each day. How can books become more popular in Japan? Dutton 「ダットン」 A-6 A-7 A-8

解決済み 回答数: 1
情報 大学生・専門学校生・社会人

vsコードを使ってJava言語の勉強をしてたんですけど初心者すぎて何が原因で上手くコードの実行ができてないのかわかりません… 勉強の資料として使ってるのは京都大学のJavaによるプログラミング入門 です。

17:43 7月27日 (木) 1.7 使用するサンプルプログラム (TankCalculator.java) 1: public class Tank Calculator { 2: public static void main (String args[]){ final double FLOW_RATE = 1.0; final double TANK_AREA = 20.0; final double INITIAL_LEVEL = 10.0; double time; //s double tankLevel; //m ... ocw.kyoto-u.ac.jp 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: time = 30; 14: tankLevel = INITIAL_LEVEL + FLOW_RATE*time/TANK_AREA; 15: System.out.println("Tank Level at time "+ time + "s = " + tankLevel + "m"); 16: 17: 18: 19: } 20:} 11 System.out.println("Flow Rate = + FLOW_RATE + "m** 3/s"); System.out.println("Tank Area=" + TANK_AREA + "m**2"); System.out.println("Initial Level = " + INITIAL_LEVEL + "m"); time = 60; tankLevel = INITIAL_LEVEL + FLOW_RATE*time/TANK_AREA; System.out.println("Tank Level at time "+ time + "s=" + tankLevel + "m"); 【補足】 // の後ろは,プログラムを後で読解しやすくするための注釈です. Flow Rate = 1.0m**3/s Tank Area = 20.0mm**2 Initial Level = 10.0m 8 Tank Level time 30.0s = 11.5m Tank Level at time 60.0s = 13.0m 1.7.1 サンプルプログラムの入力と実行 先ほどと同じように, 秀丸エディタを開き, 20行のプログラムを書き込んで, Tank Calculator.java と名付け, 保存して, コンパイル, 実行してください. 成功すれば,以下の実行結果が示されます。(失敗してもめげないで, 2.5.1 節を参 考に、原因を考え,再トライしてください) ちなみに, 実行結果をファイルに書き出すにはコマンドプロンプトの「リダイレク ト」 という機能を使います 11. java TankCalculator > result.txt これにより result.txt というファイルが出来ているはずです。 中身は数値や文字列 だけのテキストファイルですのでエディタなどで内容を確認できます。 @91% 11javaプログラムの中で明示的にフ ァイルに出力することもできるので すがここでは安直な方法を取ります

未解決 回答数: 1