学年

教科

質問の種類

TOEIC・英語 大学生・専門学校生・社会人

青くしてある文の文構造と訳し方を教えていただきたいです🙇‍♀️ また、mainstream America の語順に違和感を感じていて、(American mainstream とした方が正しくない?と思ってしまいます、、)それも解説いただきたいです。

Neil Hello. This is 6 Minute English from BBC Learning English. I'm Neil. Georgie And I'm Georgie. Neil If I told you I'd been for a walk to see Big Ben and Buckingham Palace, you'd know straight away I was in London. Georgie But what if my walk went past cafes selling mozzarella and ricotta where I smelled freshly made cannolis and focaccia... Where would I be then? Neil Focaccia and mozzarella... you'd be in Italy, right? Georgie Yes, Italy, or 'Little Italy' to be exact - the neighbourhood in some cities where Italian communities settled and made their home. Neil These Italian arrivals opened shops and cafes selling food to their own communities. Soon dishes like spaghetti and meatballs attracted the attention of local people, and gradually Italian food became famous around the world. In this programme, we'll be taking a walk through two Little Italys, one in Argentina, the other in New York, and, as usual, we'll be learning some useful new vocabulary as well. But before that, I have a question for you, Georgie. According to a recent YouGov poll, which Italian food is most popular with British diners? Is it: a) pizza? b) lasagne? or c) garlic bread? Georgie I think it must be pizza. Neil Okay, Georgie, I'll reveal the answer at the end of the programme. One country Italians moved to was Argentina. In 1898, Giuseppe Banchero arrived in the neighbourhood of La Boca, the Little Italy of Buenos Aires, where many Italian immigrants started restaurants. Here, Hugo Banchero, grandson of Giuseppe, tells his story to Veronica Smink, reporter for BBC World Service programme, The Food Chain: Hugo Banchero Well, my grandfather came from Italy, from Genoa, from Liguria. He was born in the centre of Genoa and arrived here in 1898 at the age of seven and a half, and this pizzeria where we are was founded on March 28, 1972. We have been here for 91 years. Veronica Smink So what culinary traditions did they bring with them? Hugo Banchero Well, our culinary tradition is pizza, and we incorporated the faina from Genoa, which is a pizza with chickpea flour... Georgie In 1898, Giuseppe founded his pizzeria - a restaurant selling pizza. When a business is founded, it's established someone starts it, or sets it up. Neil Giuseppe brought the culinary traditions from his home in Liguria in northern Italy, including regional pizzas like faina and fugazzetta. The adjective culinary describes anything connected with cooking. Georgie But probably the best-known Little Italy in the world is an area of Manhattan's Lower East side in New York. Ninety percent of Italian immigrants who arrived in the US at the turn of the century came through this neighbourhood. Neil De Palos, one of the original shops selling Italian food in Little Italy, has been serving customers for 113 years. Here, Lou De Palo, co-owner and great-grandson of the original owner, Salvino, explains more about his family history to BBC World Service programme, The Food Chain: Lou De Palo 1925... when my grandmother, Concetta, and my grandfather, Luigi, got married, they open their own shop... it's the shop we continue today being the fourth generation working alongside my sister, Maria, my brother, Sal, and our children, the fifth generation. Our business has expanded; expanded to present the full food culture of the 20 regions of Italy. Little Italy is the stepping stone of the Italian immigrant. This is where many of the Italians first came through Ellis Island, and then settled here, and then eventually moved into mainstream America throughout the rest of the country. Georgie Lou De Palo is the fourth generation of his family to run the shop, and his children will be the fifth. Phrases like fourth or fifth generation describe the children of people whose parents immigrated to a particular country.

未解決 回答数: 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
1/4