English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

電腦與網際網路 - 六月 2006

[Selected]: 所有分類 電腦與網際網路

其他:電腦 · 安全性 · 硬體 · 程式設計 · 網際網路 · 軟體 · 電腦網路

我從來沒有自己組裝過電腦

之前都是直接去買一台人家裝好的

最近因為課業上的需要  所以得裝一台『製圖專用』電腦

預算是三萬五  

麻煩好心人士幫忙   感激不盡>"<

2006-06-01 20:01:19 · 3 個解答 · 發問者 瘋子 1 in 桌上型電腦

最近想添購一台多功能印表機,因為原本已經有印表機了,所以最主要的功能是在於希望能夠傳真、掃瞄跟影印,有去看了EPSON STYLUS CX5700F ,不知道這台好不好用?還是有別的牌子的複合機比較好呢??謝謝!!

2006-06-01 19:42:12 · 3 個解答 · 發問者 嘿嘿嘿 1 in 其他:硬體

麻煩盡快告訴我!!急做謝師宴的邀請函 謝謝
麻煩盡快告訴我!!急做謝師宴的邀請函 謝謝
麻煩盡快告訴我!!急做謝師宴的邀請函 謝謝
麻煩盡快告訴我!!急做謝師宴的邀請函 謝謝

2006-06-01 19:28:33 · 5 個解答 · 發問者 Anonymous in 其他:網際網路

我使用ExtraPlayer將MIDI轉成MP3後
播放時Windows Media Player也有視覺效果了
但未何還是沒有聲音?
其說明檔之解答內容如下:
已照做,但也早就通通開啟了
未何還是 沒有聲音?

此軟體到底要如何正確使用?

*我使用XP系統



●為什麼使用影音轉檔功能,從 CD (*.cda) 或 Midi (*.mid
 ) 轉檔為 WAV、MP3、WMA 或 RA 檔案會沒有聲音,又要如
 何調整轉檔的聲音大小呢?

CD (*.cda) 或 Midi (*.mdi) 轉檔為 WAV、MP3、WMA 或 RA 的音量與播放它時的音量成正比關係,有必要時,你可以調整系統的「音量控制」與「錄音控制」。在系統的「錄音控制」裡,你必須勾選與聲波、立體聲或混音相關的項目,這樣轉檔出的 WAV、MP3 、WMA 或 RA 才會有聲音。你可以在主程式的「執行」功能表的「進階錄音」裡,找到「開啟音量控制」與「開啟錄音控制」這兩個選項。

2006-06-01 18:44:19 · 3 個解答 · 發問者 Anonymous in 其他:電腦

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 程式設計

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 程式設計

如題...
我想劃撥東西但不想叫他送來家裡
可以先叫他寄存在郵局然後在去領嗎??
有這樣的嗎??

2006-06-01 18:12:47 · 3 個解答 · 發問者 jeany0584 2 in 其他:網際網路

我目前是用諾頓....但是我發現我中木馬
或是太強的病毒 諾頓都一點反應也沒有
朋友介紹我下載卡巴斯基 說可以掃出木馬
但是我怕兩個防毒軟體會衝突...
可以一台電腦裝很多種防毒軟體嗎??

2006-06-01 17:48:18 · 11 個解答 · 發問者 Kws 4 in 軟體

正在研究有關數獨方面的程式

9*9的

有人可以給我程式的原始碼嘛

我想知道該從哪方面下手

2006-06-01 17:46:41 · 3 個解答 · 發問者 Anonymous in 程式設計

請問我如果用\"郵政國內匯款單\"匯錢給賣家,
那麼\"轉出帳號後五碼\"要填寫嗎?

2006-06-01 17:20:23 · 3 個解答 · 發問者 恆星的恆心 3 in 其他:網際網路

就是1-10不能重複填入10格.橫ㄉ跟直相加都是18
O----O----O----O
O O
O----O----O----O
第2排中間是空ㄉ 我不會畫 請大大們 幫幫我

2006-06-01 16:34:45 · 3 個解答 · 發問者 Anonymous in 軟體

金嗓900pro有兩百g硬碟的那台
有人自己灌歌成功過嗎?原聲原影的歐!
說明天上面有說方法
爸爸的朋友說可以上網抓mtv
燒成光碟在放進去金嗓的光碟機裡
就可以讀進去硬碟

但我試過了mpeg的檔案
也試過燒成vcd
但是都用不成功

希望有自己灌歌成功的網友教一下!謝謝

或是有什麼方法可以便宜的灌到原聲原影的新歌

不然給廠商灌真的貴的要命

謝謝

2006-06-01 16:22:12 · 8 個解答 · 發問者 旺哦朵廣告 2 in 其他:電腦

每次我要登入msn,輸入的帳號密碼都會延遲,等到都輸好ㄌ要登入,會出現\"因為MSN暫時無法使用,所以無法登入.請稍後再試 80040111\"可以請大大告訴我怎ㄇ解決ㄇ??拜託嚕~!!

2006-06-01 16:21:12 · 2 個解答 · 發問者 姿姿 1 in 其他:網際網路

我想用35000配一套電腦繪圖硬體要如何去配ㄋ?
還有無限制預算的要怎麼配會比較好勒??

2006-06-01 16:11:00 · 2 個解答 · 發問者 micky 1 in 桌上型電腦

我用一個EXCEL的SHEET1來記錄我不同日期所進貨的項目
EX:
貨號 進貨日期  數量 金額
A01  2006/1/1  10  100
A01  2006/6/1  10  150
A02  2006/3/1  20  440
A03  2006/5/1  10  15

另外SHEET2則是想要顯示最新一次的進貨金額
EX:
貨號 最近一次進貨日期  數量 金額
A01   2006/6/1     10  150
A02   2006/3/1     20  440
A03   2006/5/1     10  15

因為是多筆資料,似乎無法以VLOOKUP來對應
用DMAX來抓時間的最大值似乎又沒辦法以貨號來對應
但是因為要連結特定軟體因故無法使用ACCESS

煩請EXCEL達人們.....幫忙想想辦法
THX~

2006-06-01 16:10:58 · 3 個解答 · 發問者 Mr.40 2 in 軟體

最近要買電腦,但不知怎樣的配備才足夠,還有現在的行情價錢??
目前的需求為常需要傳送檔案,所以不能太慢,還有之後要灌會計軟體,還有短期不會再換電腦

2006-06-01 16:09:28 · 4 個解答 · 發問者 APPLE 1 in 桌上型電腦

如題
MIDI編曲檔要怎麼變成MP3檔
拜託各位聰明的大大解答吧!

2006-06-01 16:09:28 · 1 個解答 · 發問者 ? 1 in 其他:電腦

請問 郵局包裹寄來時 我剛好出去旅行 回來後發覺都過了5天 請問這樣東西會不會因為太久沒去領而退回去

2006-06-01 15:58:26 · 3 個解答 · 發問者 eeee 2 in 其他:網際網路

我們學校現在要我們做一份
電腦的報告 而出的題目就是
我們要自己組一台電腦
然後去電腦賣場 搞到估價單
而我對於組裝電腦 實在是沒知識+沒常識0.0...
所以想請各位 幫我組不用太貴(學生嘛)
普通的幾台電腦就好
另外麻煩跟我講一下 有沒有其他要注意的問題 感謝

2006-06-01 15:12:58 · 1 個解答 · 發問者 秋楓之舞 3 in 桌上型電腦

我之前要開我的無名網誌都可以開!可是到最近每當我點我的網製的時候,它就會跑出一個視窗說\"點選以執行這個網頁上方的ActiveX控制項\'\'我的網摯友放音樂檔!可是我之前在開都沒問題阿!現在不但我的不能開連要開其他人的網誌也出現同樣ㄉ狀況!我想問這會是電腦中毒嗎?還是我亂按到一些選項ㄌ??

2006-06-01 15:10:52 · 1 個解答 · 發問者 林小春 3 in 其他:網際網路

來這請教電腦達人
我是在做電腦美工繪圖的
有時畫些插圖是還好
但只要是需要輸出的圖像,有時一張圖就會開到300dpi以上
在加上100多個的圖層,一張圖的大小就快100M
而這時電腦跑起來就真的很龜
一筆畫下去,都讓我等的叫苦連天
所以想請問電腦達人

以下為我家電腦的基本配備
請問還需要加購哪些才能跑的更順暢呢?
(希望順便推薦一下廠牌)
感謝答覆!

主機板:
CPU 類型 Intel Pentium 4, 1500 MHz (3.75 x 400)
主機板名稱 Gigabyte GA-8IDX (6 PCI, 1 AGP, 1 CNR, 3 DIMM, Audio)
主機板晶片組 Intel Brookdale i845
系統記憶體 768 MB (SDRAM)
BIOS 類型 Award Modular (08/06/01)
序列和平行埠 通訊連接埠 (COM1)
序列和平行埠 通訊連接埠 (COM2)
序列和平行埠 印表機連接埠 (LPT1)

顯示器:
視訊卡 ATI RADEON 9600 Series (128 MB)
視訊卡 ATI RADEON 9600 Series (128 MB)
3D 加速器 ATI M10
顯示器 預設監視器
顯示器 ViewSonic VA720 (A1D024601651)

[ 主機板 ]

主機板內容:
製造商 Giga-Byte Technology Co., LTD
產品 8IDX
版本 1.x

2006-06-01 14:57:36 · 6 個解答 · 發問者 Moya 1 in 桌上型電腦

網購拍賣買東西..現在想退貨,賣方也同意,但是郵寄問題..對方是請我寄到他的郵政信箱 也答應我之前買的錢和記給我的掛號郵資要退給我.問題是我現在要把東西給寄回去[寄到信箱去]是要用平信還是掛號啊?平信寄到郵政信箱應該不會丟掉吧可以請郵局從業人員回答我嗎?3QQ~~

2006-06-01 14:51:31 · 3 個解答 · 發問者 ***莉涵*** 2 in 其他:網際網路

有什麼測試方法可知記憶體是否壞掉。
有什麼測試方法可知記憶體是否壞掉。
有什麼測試方法可知記憶體是否壞掉。
謝謝。

2006-06-01 14:31:11 · 2 個解答 · 發問者 MoMo 1 in 附加元件

大家好! 我想請問
有時候我會瀏覽一些賣家的評價
點進去看那件商品時
有些會圖片已經無法顯示但商品介紹還在
有些卻會顯示\"無法進入 拍賣商品。 請稍後重試\"
可是當我看自己以前的評價時
不論是圖片或是商品介紹都很完整的還在
有人說那是奇摩過六個月系統會刪除
可是我的紀錄也超過六的月啊!
所以我想問是不是有什麼方法可以刪除刊登過的圖片
或是直接刪除那商品的資料不讓人看到
請各位為我解答 謝謝!!

2006-06-01 14:29:00 · 3 個解答 · 發問者 Anonymous in 其他:網際網路

最近想要買NB,希望能有內建電視卡的,但是不知道有哪些型號有,而且預算有限,才來這邊問
麻煩知道的人說明一下?
謝謝大家

2006-06-01 14:27:55 · 1 個解答 · 發問者 蔚藍海 1 in 筆記型電腦

請問要怎麼用photoshop去背呀 我的是8.0的
可以的話請說詳細一點謝謝勒

2006-06-01 14:01:03 · 4 個解答 · 發問者 kiss 1 in 軟體

最近在網路上買了MOTOV3的傳輸線.為什麼連接之後就顯示充電中.他送ㄉ光碟片有一個USB軟體.我也灌了.但是一直顯示充電中.是USB軟體的問題嗎?有誰知道可以幫我一下!我已經搞了1個禮拜了.怎麼用都不行.而且MPT我也把他更新盜4.04版了!誰會的交我一下吧!!!

2006-06-01 12:59:13 · 3 個解答 · 發問者 ? 1 in 其他:硬體

版面如果換成直式直書的話,字就會從右上方開始打下來,可是我們老闆要求我能夠把字從左上方打下來,找了老半天還是不知道怎樣設定字的起始處,請專精word的大大們協助我吧!

2006-06-01 12:33:11 · 3 個解答 · 發問者 CHANG CHAOMIN 1 in 軟體

fedest.com, questions and answers