The value e^x can be approximated by the sum:1+x+x^2/2!+x^3/3!+......+x^n/n!Write a program that takes a value x as input and outputs this sum for n taken to be each of the values 1 to 10,50,and 100. Your program should repeat the calculation for new values of x until the user says she or he is through. The expression n! is called the factorial of n and is defined asN!=1*2*3*.....*nUse variables of type double to store the factorials (or arrange your calculation toavoid any direct calculation of factorials); otherwise, you are likely to produce inte-geroverflow, that is , integers larger than Java allows.煩請高手代為解答
2006-06-01 18:22:58 · 3 個解答 · 發問者 23歲九局下半 4 in 程式設計
我有一位朋友, 在桃園某國小教書, 而我這位朋友,教到了一位家長自稱自己孩子是過動兒的學生(但家長卻提不出任何醫生證明),這位學生,曾多次將午餐倒進其他學生的書包裡,也曾經將其他學生的作業簿撕碎,我朋友也多次和家長寫連絡簿告知他孩子在學校的事,但家長以一句他孩子是過動兒為理由, 要我朋友處理,(那家長甚至連一句道歉都沒說),如果沒處理, 那家長就會找議員,立法委員來學校, 我朋友只能跟受害的學生家長道歉,並賠作業簿給學生, 日前, 我朋友因那學生字寫很醜, 那家長竟告到校長室, 跟校長反應為何給他孩子這麼低的分數, 而學校施壓給我朋友, 要她自行處理, 我朋友教此學生不到一年, 已經快得了憂鬱症, 請大家幫幫忙, 想想辦法幫幫她..
此學校因為怕影響校譽, 不敢得罪家長, 要老師自行處理, 而家長因為認識議員,立法委員, 而以此來威脅學校, 最可憐的還是如同夾心餅乾的老師, 請大家想想辦法幫幫她吧..
處於這種情況的老師,該怎麼自救? 難道只有家長申訴老師的不當管教, 而老師在兩難的困境卻無處申訴嗎?
一個國小老師的悲哀, 也許是許多國小老師的悲哀, 請大家幫幫忙吧.講出具體的處理方法吧... 萬分感謝...
2006-06-01 18:22:10 · 7 個解答 · 發問者 ? 4 in 其他:教育
It is difficult to make a budget that spans several years, because prices are not stableIf your company needs 200 pencils per year, you cannot simply use this year\'s priceas the cost of pencils two years from now. Because of inflation, the cost is likely tobe higher than it is today>Write a program to gauge the expected cost of an item ina specified number of years. The program asks for the cost of the item, the numberof years from now that the item will be purchased, and the rate of inflation. The program should then convert the percent to a fraction, such as 0.056, and should use a loop to estimate the price adjusted for inflation.煩請高手幫忙解答
2006-06-01 18:22:04 · 2 個解答 · 發問者 23歲九局下半 4 in 程式設計
One way to estimate the adult height of a child is to use the following formula,which uses the height of the parents:Hmale_child=((Hmother*13/12)+Hfather)/2Hfemale_child=((Hfather*12/13)+Hmother)/2All heights are in inches. Write a program that takes as input the gender of the child,the height of the mother in inches,and the height of the father in inches,and out-puts the estimated adult height of the child in inches. The program should allow the user to enter a new set of values, ouputting the predicted height, until the userdecides to exit. The user should be able to input the heights in feet and inches,andthe program should output the estimated height of the child in feet and inches. Usethe integer data type to store the heights.煩請高手幫忙解答
2006-06-01 18:21:06 · 2 個解答 · 發問者 23歲九局下半 4 in 程式設計
In the game of craps,apass line bet proceeds as follows. Two six-sided dice are rolled;the first roll of the dice in a craps round is called the"come out roll."A comeout roll of 7 or 11 automatically wins, and a come out roll of 2,3, or 12 automati-cally loses. If 4,5,6,8,9, or 10 is rolled on the come out roll, that numberbecomes the point is rolled first, then the player wins the bet,If a 7 is rolled first,then the player loses.Write a program that simulates a game of craps using these rules without humaninput. Instead of asking for a wager, the program should calculate whether the playerwould win or lose.The program should simulate rolling the two dice and calculatethe sum.Add a loop so that the program plays 10,000 games.Add counters thatcount how many times the player wins, and how many times the player loses."At theend of the 10,000 games, compute the probability of winning [i.e., Wins/(Wins+Losses)] and output this value.Over the long run, who is going to win the most games,you or the house?Note.To generate a random number x , where 0x<=1,use x = Math.random();.For example, multiplying by 6 and converting to an integer results in an integer that is between 0 and 5.麻煩會的高手幫忙解答
2006-06-01 18:20:24 · 2 個解答 · 發問者 23歲九局下半 4 in 程式設計
麻煩各位大大...
幫忙找出三天兩夜的行程...
必須要有時間地點...費率...行程and旅行社電話...
人數大約是15-20人,大致上都是男生...
請各位大大幫幫忙...
可以麻煩幫找澎湖.墾丁.花東.....先找這三個為先...
事情緊急...有關我的暑假...請各位大大幫幫忙
2006-06-01 18:20:09 · 3 個解答 · 發問者 小翠 1 in 台灣
(This is a version of an exercise from Chapter2).The Babylonian algorithm to computethe square root of a number n is as follows:1. Make a guess at the answer(you can pick n/2 as your initial guess).2. Compute r=n/guess3. Set guess =(guess=r)/24. Go back to step 2 until the last two guess values are the same.程式問題 麻煩高手幫忙解答
2006-06-01 18:19:22 · 1 個解答 · 發問者 23歲九局下半 4 in 語言
我是大學畢業資管系的學生,我在想我該考企業電子化助理,企業電子化規劃師(一級),企業電子化規劃師(二級)的哪一種...??有人可以幫我分析嗎??
2006-06-01 18:14:57 · 1 個解答 · 發問者 平 1 in 考試
如題...
我想劃撥東西但不想叫他送來家裡
可以先叫他寄存在郵局然後在去領嗎??
有這樣的嗎??
2006-06-01 18:12:47 · 3 個解答 · 發問者 jeany0584 2 in 其他:網際網路
想要自行創業但有夢沒錢,聽說可以向政府申請創業貸款(或是青年創業貸款?39歲應該還可以算是青年吧?)
請教:
1 、該向哪個單位提出申請?
2 、有何條件、限制呢?
想突破生活困境的青年
2006-06-01 18:09:49 · 51 個解答 · 發問者 Brian 1 in 其他:工作與就業
請問有誰知道
hummanitarian aid, Military and Security Aid, Economic Stabilization, Development Assistance到底是什麼(請告訴我他們是在幫助哪一種情況的)
還有world bank, IMF又是什麼?(這兩個也算是foreign aid嗎?)
學校geography要考T_T
謝謝大家
2006-06-01 18:08:06 · 1 個解答 · 發問者 Beep 2 in 語言
如題
已經很久都沒看到曹錦輝的消息了
他到底跑到哪去了?
2006-06-01 18:07:42 · 4 個解答 · 發問者 銀 狐 1 in 棒球
他的專輯好像聽說不容易買ㄉ到耶!~~~誰可以告訴我啊?
他出過幾張專輯啊?
2006-06-01 18:05:12 · 3 個解答 · 發問者 ? 3 in 搖滾流行
我目前是用諾頓....但是我發現我中木馬
或是太強的病毒 諾頓都一點反應也沒有
朋友介紹我下載卡巴斯基 說可以掃出木馬
但是我怕兩個防毒軟體會衝突...
可以一台電腦裝很多種防毒軟體嗎??
2006-06-01 17:48:18 · 11 個解答 · 發問者 Kws 4 in 軟體
請問血友病和白血病的不同處....
兩者皆算是不治之症嗎?
2006-06-01 17:47:53 · 2 個解答 · 發問者 Anonymous in 其他:疾病
正在研究有關數獨方面的程式
9*9的
有人可以給我程式的原始碼嘛
我想知道該從哪方面下手
2006-06-01 17:46:41 · 3 個解答 · 發問者 Anonymous in 程式設計
看完逆女之後
覺得片頭和片尾曲都很好聽
網路上真難找到
有沒有辦法買到正版的原聲帶呀
2006-06-01 17:42:28 · 2 個解答 · 發問者 許小貍 1 in 其他:音樂
在海上的船會遇到海嘯嗎?
最近的海神號聽說是在海上遇到大海嘯翻船的~
所以此問在大海上會遇到海嘯嗎???
請針對海上是否會遇到海嘯襲擊回答問題~
謝謝!!!
2006-06-01 17:42:08 · 6 個解答 · 發問者 ? 2 in 氣象
去枋寮的火車票最好要多久前才會有位子?嘉義到枋寮的
還有價錢?來回的
謝謝。未滿18歲的話。墾丁的民宿可以登記住宿嗎?
2006-06-01 17:31:36 · 2 個解答 · 發問者 ? 1 in 台灣
這兩間學校都在新竹
這兩間那間比較 不偏僻 ? 比較有地方可以逛 ? 離市區較近 ?
學校設備各怎樣 ?
想去新竹讀書 不知道新竹有哪間學校比較好 ?
希望可以離市區近一點 !!!!!
2006-06-01 17:23:27 · 2 個解答 · 發問者 Anonymous in 其他:汽車與運輸
號外號外~~大消息~~根據內線消息~~金色摩天輪的神秘黑衣人出爐了~
答案是====>心蘭
殺人的動機是====>心蘭跟陳東山是同父異母的兄妹~因為東山的父親遺棄了心蘭的母親~所以心蘭想要對陳東山父子報仇~先是殺害牛奶~讓陳東山失去土豆的下落~並造成陳東山與唐世賢的不和.然後又要殺害陳東山的父親.
消息來源=====>偶母親做夢夢到的~~哈哈~~^_^
2006-06-01 17:23:02 · 21 個解答 · 發問者 Anonymous in 戲劇
我是一個大二生 這學期修了一科通識\"美國文化概論\" 可是因為平時翹課太兇 老師說他扣分扣很重 補救辦法是 最後一堂課(下星期四)他會請一位我們學校的外籍老師 然後我們要用英文發問問題 就醬子@@但希望是比較有深度的問題 有人覺得問什麼問題比較好嗎。。。非常感謝解答。。。
2006-06-01 17:21:00 · 2 個解答 · 發問者 瓜 1 in 其他:教育
誰可以告訴我孤雛淚的大意??
除了原本知識家的那篇 還有別篇嗎??
拜託告訴我
謝謝
2006-06-01 17:20:58 · 1 個解答 · 發問者 神羽 2 in 詩詞與文學
請問我如果用\"郵政國內匯款單\"匯錢給賣家,
那麼\"轉出帳號後五碼\"要填寫嗎?
2006-06-01 17:20:23 · 3 個解答 · 發問者 恆星的恆心 3 in 其他:網際網路
今天熱火輸了我好失望 誰能幫我分析六站誰的贏面比較大
熱火如何突破活賽的防守
要分析
1天內給我答案
支持熱火= =
2006-06-01 17:19:00 · 3 個解答 · 發問者 台灣之光書豪 1 in 籃球
吸入性肺炎算是嚴重的病嗎?
上次多吃了幾顆安眠藥.結果昏迷了幾天
聽說是吸入性肺炎.本來要氣切.後來沒有做(有發病危通知)
我真搞不懂.怎麼會去加護病房.吸入性肺炎算嚴重的病嗎?
我住了五天加護病房.二天一般病房.就出院了
現在除了咳嗽和体力較不好外.其它和正常人沒二樣呀
2006-06-01 17:16:19 · 2 個解答 · 發問者 samantha 5 in 其他:疾病
因為有一個金牛的女孩子
答應過我在我生日6月11那天要跟我在一起
可是卻在前一陣子~~他跟我說他想先拼事業
暫時不想談感情~~~
所以現在我好擔心
想請大家投票說明覺得這樣的金牛6月11那天到底會不會跟我在一起
我生日那天結局如何我在開票~~感謝你們..
或有什麼意見也希望建議給我聽感謝你們
2006-06-01 17:02:15 · 4 個解答 · 發問者 志軒 3 in 心理健康
想去的景點有初鹿農場、小野柳、關山、三仙台、水往上流、知本、琵琶湖,不知道怎麼安排比較好?(景點可以變動)
2006-06-01 17:01:59 · 5 個解答 · 發問者 佳容 2 in 台灣
我很喜歡胡思亂想 更加喜歡東寫寫西寫寫
同學們都鼓勵我去投稿
但我還未成年 真的可以嗎?
又到底該怎麼辦呢?
2006-06-01 16:58:59 · 5 個解答 · 發問者 Anonymous in 書籍與作家
如題~單鍵ˋ雙鍵ˋ參鍵的關係?
快也快也~~~他們有啥關係哩~想半天想不通捏~
2006-06-01 16:58:16 · 2 個解答 · 發問者 Anonymous in 化學
Questions asked on 1 六月 2006:
Showing 91 to 120 of 341 questions
Questions asked on other days: