学年

質問の種類

英語 高校生

(2)の訳は 「そのことについて考えれば考えるほどストレスには私たちにとって何かが価値があるように思われた」 なのですが、訳を書く時に「そのこと」と書くのは違和感があります。aboutの後ろのitはit=stressですよね? だとしたら「ストレスについて...」と書いても... 続きを読む

次の英文を読んで, 設問に答えなさい。 25 min. 454 words 2 25分ぐ終了 ( Listening to a gardening program the other day, I was struck by something the /S-70₂ expert said about a particular type of potted plant. Do not water it once it has *come into bud, he advised. Cause it to feel stress, and it will produce more, and more beautiful, flowers. 52 Surely this advice is against everything that we are told by doctors. Stress is bad for us, they say. Stress is the cause of all sorts of diseases. Stress caused by overwork sometimes results in early death. Newspaper and magazine articles tell us how to reduce stress, or how to avoid it altogether. No one has a good word for stress. 10 3 And yet, I asked myself, if stress is good for plants, can there possibly be any value for us in it? The longer I thought about it, the more it seemed to me that there is. Without a certain degree of tension and stress, we are apt to become lazy and neglect our duties. All students know that they should study regularly throughout the year, and then be able to face examinations without fear. In fact, 15 most students leave this study till the last possible moment, and then hastily try to ( 3 ) lost time. Many of us, likewise, put off dealing with our problems until the deadline approaches. Every year I resolve that I will write all my Christmas cards and letters ahead of time, and avoid a last-minute rush; and every year I find that 20 once again I have left it too late for me to finish comfortably. Only when the tension increases [working seriously / the job / do / to get/I/done / start]. (4) In other fields too, when satisfaction enters in, creativity and curiosity go out of the window. What has been called "divine discontent" - a creative dissatisfaction (5) with the present situation, whatever it is produces progress. And that 25 dissatisfaction is one type of stress. 6Thus, it seemed to me, a certain degree of stress is necessary for human progress. Just how much is good, and how much is harmful, is the problem. Those of us who are employed by a company/whose policies demand long periods of stressful activity/are to be sympathized with, since too much stress is activity/are

未解決 回答数: 1
英語 高校生

過去完了のalwaysは「昔からずっと」という意味だと思っていたのですが、解答では「それまでは」と書いていました。「それまでは」とはつまり「今は違う」ということでしょうか? また過去の出来事でのnowは「その時点を表す」という意味なので「そのとき」と訳せばいいと思っていたの... 続きを読む

1 演習 1 (問題→本冊: p.3) Sally had lived abroad most of her life, but at last she came back to England to live. She had always loved trees and flowers, and now she aimed to buy a small house in the country with a garden. 【全文訳】 サリーは人生の大方の期間, 外国暮らしをしていたが,ついにイギリスで暮 らそうと戻って来た。(それまでは)いつも木と花を愛していて, これから田舎に庭 付きの小さな家を買おうとした。 【解説】 述語動詞は had lived (過去完了), came (過去時制), had loved (過去完了), aimed (過去時制)。 (for) most of her life 「彼女の人生のほとんどの期間」は had lived を修飾, to live は副詞的用法 (目的) 「暮らすために」 で, came back 「戻った」 を修飾。 第2文の後半の now は物語の中などで 「今や, そこで」 の意味。 with a garden は GER house を修飾して 「庭のある家」。 came, aimed の2つの過去時制が 「基準時」 ( 19 課)。

未解決 回答数: 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
英語 高校生

In Yemen〜からの訳でなぜ名詞構文になっているかわからないです。何百年にもわたってと世界で独占的な地位を占めていたという訳のところが理解できないです。 heldにそんな訳あったっけみたいや感じです。、 あと何世紀も後にアメリカ人がこの地名にちなんでチョコレート風味のコ... 続きを読む

Each culture [along the Coffee Road] left its mark (on the drink). (In V O S Yemen, [which held a global monopoly [on coffee] (for hundreds of years)]), 3 語句 は opened と spread を結 from there という副詞のカタマリが入っていま 6 具体例の合図 固有名詞→ 3 Yemeni people traded the beans V S O the roasting [of coffee ] became a custom. C ST (via the Red Sea port of Mocha) [(after which, (centuries later), Americans OSH S → 名詞構文 V' で訳す various S 9 would name their chocolate-flavored coffee)]. (In Turkey), V' O' 固有名詞 → 具体例の合図 [including cinnamon] were added 10 The Tunisians improved the drink (with orange-flower water), and the Moroccans added dried rose blossoms as well as V Smes in inco ja and thoment S FASO spices balsamic spices. quantveel) aning insiday A sdi qu nomy ,' 何 [mg 『コーヒーロード沿いのそれぞれの文化が,この飲み物に影響を残している。7 百年にもわたって、コーヒーにおいて世界で独占的な地位を占めていたイエメン では、コーヒーの焙煎が慣習になった。 イエメンの人々はモカ(何世紀も後に、 hasons アメリカ人がこの地名にちなんでチョコレート風味のコーヒーに名前をつけるこ とになる)の紅海に面した港を経由して豆の取引を行った。 トルコでは、シナ モンなどの様々な香辛料が加えられた。 10 チュニジア人は橙花水を加えてコーヒ 一の風味をよくし, モロッコ人はバルサムの香辛料だけでなく、乾燥させたバラ の花びらを加えた。 Purifioing (Static) 6 Bleave one's mark on ~ ~に強い影響を残す/monopoly 圏独占 / roasting 名 焙煎 / via ~ 圃 〜経由で/Red Sea 紅海 / port ③ 港 / name A after B B にちなんでAに名前をつける / including [前 ~を含めて,~などの/

未解決 回答数: 0
英語 高校生

至急❗️大門3と大門4がわかりません。教えて下さい。よろしくお願いします。

3 次の英文の( )に入れるのに最も適当なものを1つ選び、記号を○で囲みなさい. (1) 2012 is the year ( 7. when ) our soccer team played in the finals. 1. where . which (2) Japan is the country ( 7. how ) people drive on the left. 1. that . where ) I respect him. (3) My father works hard every day. That's ( 7. how 1. when . where (4) There are some points ( ) I disagree with you. 7. how 1. when . where ) our city is often attacked by typhoons. (5) Summer is the season ( 7. how 1. when . where ) a famous novelist lives. (6) That is the house in ( 7. that 1. which (7) I caught a cold. This is ( 7. how (8) The time will come ( (2) That is the point when you are mistaken. I. why * drive on the left 「(車が) 左側を走る」 I. which (3) I want to know the way you cooked this delicious dish. . where ) I will be absent from today's meeting. 1. which . why I. whose ) humans live to be 150 years old. *live to be ~ 「~になるまで生きる」 1. when 7. how . where I. why (9) I'm interested in publishing a book. Could you tell me ( ) you published your book? 7. that 1. how . which I. whose (4) That is the bakery where my aunt opened last week. I. why I. why 4 次の英文の誤りを正しく直し、全文を書きかえなさい. 誤りがない場合は,解答欄に○を書きなさい. (1) Please tell me the exact time where you will arrive here. (5) Do you know the place where we often gather and have lunch in? I. whose I. whose (6) In our house, we have a beautiful flower bed where my mother loves. * flower bed 「花だん」

未解決 回答数: 1