趣味新聞網 logo



(C++)有沒有高手可以幫我看一下..完全Compile不齣來@@ - 趣味新聞網


(C++)有沒有高手可以幫我看一下..完全Compile不齣來@@


發表日期 2009-01-30T03:10:41+08:00



     趣味新聞網記者特別報導 : [table=98%][tr][td]//Employee.cpp#include using std::cout;#include "Employee.h" // Employee class de .....


    

//Employee.h
#include <string>
using std::string;

// Employee class definition
class Employee
{
public:
Employee(string, string, int)/* Declare a constructor that has one parameter for each data member */
void setFirstName(string);/* Declare a set method for the employee's first name */
string getFirstName();/* Declare a get method for the employee's first name */
void setLastName(string);/* Declare a set method for the employee's last name */
string getLastName();/* Declare a get method for the employee's last name */
void setMonthlySalary(int);/* Declare a set method for the employee's monthly salary */
int getMonthlySalary();/* Declare a get method for the employee's monthly salary */
private:
string firstName;/* Declare a string data member for the employee's first name */
string lastName;/* Declare a string data member for the employee's last name */
int monthlySalary;/* Declare an int data member for the employee's monthly salary */
}; // end class Employee

//Employee.cpp
#include <iostream>
using std::cout;
#include "Employee.h" // Employee class definition
Employee::Employee(string a, string b, int c)
{setFirstName(a);
setLastName(b);
setMonthlySalary(c);
}
/* Define the constructor. Assign each parameter value to the appropriate data
member. Write code that validates the value of salary to ensure that it is
not negative. */
void Employee::setFirstName(string a)
{firstName = a;}
/* Define a set function for the first name data member. */
string Employee::getFirstName()
{return firstName;}
/* Define a get function for the first name data member. */
void Employee::setLastName(string b)
{lastName = b;}
/* Define a set function for the last name data member. */
string Employee::getLastName()
{return lastName;}
/* Define a get function for the last name data member. */
void Employee::setMonthlySalary(int c)
{if(c<0)
{ cout << "Salary can't be nagetive!" << endl;
}
else
monthlySalary = c;}
/* Define a set function for the monthly salary data member. Write code
that validates the salary to ensure that it is not negative. */
int Employee::getMonthlySalary()
{return monthlySalary;}
/* Define a get function for the monthly salary data member. */

//EmployeeTest.cpp
#include <iostream>
using std::cout;
using std::endl;

#include "Employee.h" // include definition of class Employee

// function main begins program execution
int main()
{   Employee Employee1(Bob, Jones, 34500);
Employee Employee2(Susan, Baker, 37800);
/* Create two Employee objects and assign them to Employee variables. */
cout << "Employee 1:" << Employee1.getFirstName() <<  Employee1.getLastName(); << "; Monthly Salary: " << Employee1.getMonthlySalary() << endl;
cout << "Employee 2:" << Employee2.getFirstName() <<  Employee2.getLastName(); << "; Monthly Salary: " << Employee2.getMonthlySalary() << endl;
/* Output the first name, last name and salary for each Employee. */
Employee1.monthlySalary = Employee1.getMonthlySalary() * 1.1;
Employee2.monthlySalary = Employee2.getMonthlySalary() * 1.1;
/* Give each Employee a 10% raise. */
cout << "Increasing employee salaries by 10%" << endl;
cout << "Employee 1:" << Employee1.getFirstName() <<  Employee1.getLastName(); << "; Monthly Salary: " << Employee1.getMonthlySalary() << endl;
cout << "Employee 2:" << Employee2.getFirstName() <<  Employee2.getLastName(); << "; Monthly Salary: " << Employee2.getMonthlySalary() << endl;
/* Output the first name, last name and salary of each Employee again. */
return 0; // indicate successful termination
} // end main

非常感謝喔@@

[ 本帖最後由 風箏惡魔 於 2009-2-19 13:54 編輯 ]

分享鏈接



看最新新聞就到趣味新聞網
quweinews.com
立刻按 ctrl+D收藏本頁
你會得到大驚喜!!

下面是我用Visual Studio 2005 Build时的error, 一样一样解释吧....
如果懒得看, 我把改过的版本重新传成附件, 您自己再比对看看吧....
====
1>------ Rebuild All started: Project: LAB, Configuration: Debug Win32 ------
1>Employee.cpp
1>f:codesvs2005labemployee.h(11) : error C2144: syntax error : 'void' should be preceded by ';'
Employee(string, string, int) 后面少了个分号 ;
1>f:codesvs2005labemployee.cpp(30) : error C2065: 'endl' : undeclared identifier
档案开头少了using std::endl;

1>EmployeeTest.cpp
1>f:codesvs2005labemployee.h(11) : error C2144: syntax error : 'void' should be preceded by ';'
同上面那个档案略过.
1>f:codesvs2005labemployeetest.cpp(11) : error C2065: 'Bob' : undeclared identifier
1>f:codesvs2005labemployeetest.cpp(11) : error C2065: 'Jones' : undeclared identifier
1>f:codesvs2005labemployeetest.cpp(12) : error C2065: 'Susan' : undeclared identifier
1>f:codesvs2005labemployeetest.cpp(12) : error C2065: 'Baker' : undeclared identifier
因为你的Employee()是收String型态, 所以如果你不自行生成Bob, Jones, Susan, Baker的String实体,
那么一个比较偷懒的方式就是把它们都加上"", 成"Bob", "Jones", "Susan", "Baker"这样.
1>f:codesvs2005labemployeetest.cpp(14) : error C2143: syntax error : missing ';' before '<<'
1>f:codesvs2005labemployeetest.cpp(15) : error C2143: syntax error : missing ';' before '<<'
Employee1.getLastName(); 和后面 << "; Monthly Salary: " <<  ....(略)
如果你要接着印后面的东西, getLastName()后面的分号 ; 就要拿掉.
如果你要分两行, getLastName() << endl; 然后再接 cout << "; Monthly Salary: " <<  ....(略)
1>f:codesvs2005labemployeetest.cpp(17) : error C2248: 'Employee::monthlySalary' : cannot access private member declared in class 'Employee'
1>        f:codesvs2005labemployee.h(21) : see declaration of 'Employee::monthlySalary'
1>        f:codesvs2005labemployee.h(9) : see declaration of 'Employee'
1>f:codesvs2005labemployeetest.cpp(17) : warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
1>f:codesvs2005labemployeetest.cpp(18) : error C2248: 'Employee::monthlySalary' : cannot access private member declared in class 'Employee'
1>        f:codesvs2005labemployee.h(21) : see declaration of 'Employee::monthlySalary'
1>        f:codesvs2005labemployee.h(9) : see declaration of 'Employee'
monthlySalary是Employee的私有变数, 所以你不能直接从外部存取这个变数.
必须用Empolyee提供的成员函数setMonthlySalary()来设值.
所以其中一行要改成Employee1.setMonthlySalary(Employee1.getMonthlySalary() * 1.1);
另一行请照着改; 另外, 这里有一个double -> int的精度失真的warning在下面, 看你care不care.
1>f:codesvs2005labemployeetest.cpp(18) : warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
1>f:codesvs2005labemployeetest.cpp(21) : error C2143: syntax error : missing ';' before '<<'
1>f:codesvs2005labemployeetest.cpp(22) : error C2143: syntax error : missing ';' before '<<'
这两个和前几段提过的是同一个问题, 都是分号 ; 加在不对的地方, 或者后面 << 接在不对的地方.
1>Generating Code...
====
以上, 我只照个Visual C++ 2005显示的error帮您修一下, 至于程式逻辑我就没仔细看了.
总之先帮您build得过了, 至于程式在干麻运行的对不对, 这么晚了, 再说吧....zzZ

感谢楼上的高手喔
我是用g++在compile的
但是我现在compile出这个error

/tmp/cceLW7OY.o: In function `main':
EmployeeTest.cpp:(.text+0xdb): undefined reference to `Employee::Employee(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, int)'
EmployeeTest.cpp:(.text+0x205): undefined reference to `Employee::Employee(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, int)'
EmployeeTest.cpp:(.text+0x2a5): undefined reference to `Employee::getMonthlySalary()'
EmployeeTest.cpp:(.text+0x2e6): undefined reference to `Employee::getLastName()'
EmployeeTest.cpp:(.text+0x2f6): undefined reference to `Employee::getFirstName()'
EmployeeTest.cpp:(.text+0x3c0): undefined reference to `Employee::getMonthlySalary()'
EmployeeTest.cpp:(.text+0x3d6): undefined reference to `Employee::getLastName()'
EmployeeTest.cpp:(.text+0x3e6): undefined reference to `Employee::getFirstName()'
EmployeeTest.cpp:(.text+0x4a7): undefined reference to `Employee::getMonthlySalary()'
EmployeeTest.cpp:(.text+0x4b9): undefined reference to `Employee::getMonthlySalary()'
EmployeeTest.cpp:(.text+0x4ef): undefined reference to `Employee::setMonthlySalary(int)'
EmployeeTest.cpp:(.text+0x4fb): undefined reference to `Employee::getMonthlySalary()'
EmployeeTest.cpp:(.text+0x50d): undefined reference to `Employee::getMonthlySalary()'
EmployeeTest.cpp:(.text+0x543): undefined reference to `Employee::setMonthlySalary(int)'
EmployeeTest.cpp:(.text+0x56b): undefined reference to `Employee::getMonthlySalary()'
EmployeeTest.cpp:(.text+0x581): undefined reference to `Employee::getLastName()'
EmployeeTest.cpp:(.text+0x591): undefined reference to `Employee::getFirstName()'
EmployeeTest.cpp:(.text+0x645): undefined reference to `Employee::getMonthlySalary()'
EmployeeTest.cpp:(.text+0x65b): undefined reference to `Employee::getLastName()'
EmployeeTest.cpp:(.text+0x66b): undefined reference to `Employee::getFirstName()'
collect2: ld returned 1 exit status




另外两个没问题了@@
再次感谢喔

[ 本帖最后由 qwpobird 于 2009-1-30 02:56 编辑 ]

因为您compile EmpolyeeTest.cpp, 它找不到Empolyee.cpp的symbol.
所以概念上您需要把个别的.cpp(或.c)用g++ -c 先compile出obj档.
然后再用link把所有.obj档link成一个可以执行的binary file出来.
如果您有像VC++, BCB, Dev-Cpp这类IDE软体可以帮您省下这些事.
您或许需要一个Make file, 不过我和make file或Linux-like的OS不熟.
在Windows下, 我用下面这行指令可以产生正确可以执行的binary.
g++ EmployeeTest.cpp Employee.cpp -o EmployeeTest.exe
如果您的确在Linux下, -o 那个.exe就没必要, 或者您可以自行置换.
也许直接叫EmplyeeTest; build完下 ./EmployeeTest 就可以执行了.

非常的谢谢你喔
我做好了
完全okay啦
:D


我想问一下喔
Visual Studio 要按哪里compile阿?
我怎么都找不到= =? 我用2008的..
express edition

[ 本帖最后由 qwpobird 于 2009-2-2 00:59 编辑 ]

Visual C++上面的工具列按钮有一个很像播放软体Play功能的绿色箭头按纽.
[ |> ] 这个预设就是"build and run", 不过这个设定是可以改成只run不build的.
所以您要的compile功能其实就是主选单里的Build->Build或Rebuild Solution.
印象中预设VC++就会帮您把solution/project里的所有.c和.cpp档都compile.
并依Solution的name帮您产生.exe档; 相关设定可以在Project->Property改.


tag

相关新聞

(C/C++) C/C++語言做成視窗化的程式

    本帖最後由 tenko 於 2009-3-5 23:15 編輯 想請教大大們,就是我的程式要怎麼纔能把它裝飾成視窗要執行有按鈕有顯示的程式呢!? 有需要哪些軟體呢!?  謝謝各位大大 {不好意思~標題格式是這樣嘛!? 還是錯誤的話就請大大幫我把這帖刪除好瞭!} 風箏惡魔:確認OK瞭,以後及得要先看版規捏..........


(C/C++)排序演算法比較的問題

    亂數比較(n=20 100 300 500 800) nsertion Sort 、QuicksortIterative 、Merge Sort這3種排序 作比較後輸齣"c:output.txt" (含所需要的時間) n Insertion sort.......


(DEV-C++)用C++寫抓取現在電腦時間

    本帖最後由 風箏惡魔 於 2009-3-2 06:20 編輯 想請問說我該如何用C語言寫齣抓取到現在電腦的時間, 最好可以抓到時分秒,然後顯示在dos畫麵即可,是要用time.h嗎??? 誰可以列舉個簡單的例子給我當作參考用.感恩! 我將程式貼到DEV-C++程式裏編譯執行以後有錯誤可是我不知道哪裏有錯, 可否用DEV-C++軟體可以編譯過的簡單例子給我. 最好是可以用到函式庫裏的time.h struct tm {         int        tm_sec; .......


(修改)無法讀取視訊檔案

    已用NERO跟Ashampoo Burning Studio 程式 測試 都是齣現 無法讀取視訊檔案 該影片格式是WMV的 音樂卻能燒錄 感謝各位幫忙 謝 [ 本帖最後由 rickhsu 於 2008-7-23 2.......


(修正版)光影魔術手 v0.26 Fix4 繁中免安裝

(修正版)光影魔術手 v0.26 Fix4 繁中免安裝

    【軟體名稱】:(修正版)光影魔術手 v0.26 Fix4 繁中免安裝 【軟體大小】:34.9mb 【軟體版本】:v0.26(修正版)Fix4 【軟體語言】:繁體中文 【軟體類型】:影音剪輯 【作業係統】:All 【存放空間】:BDG@ie .......


(急)Linux (Dreamlinux) 與 Vista 並存

    我今天突然心血來潮想找款 linux 來用用看 於是找到瞭 Dreamlinux 來試用看看 他有一個簡便的安裝介麵 隻要勾選設定 就可以一次幫你安裝好 於是我安裝好瞭之後 重新開機齣現瞭作業係統選單 我發現 我這個時候不能開原本的 V.......


(求助)EXCEL問題

    如何用那個程式求二個品項中的差異值 如︰ 批號              數量 12345            10 12345              2 就是批號一樣,可是他的數量是不一樣的,而這兩個差異來源是屬於不同的地方,那我要如何.......


--lee-- Clonezilla Live 再生龍 (9/27編輯)

    沒錯!這是磁區備分軟體!建立目前係統磁區映像檔,等待哪天中毒或想重灌時直接覆蓋迴來即可! 貼在這區塊是因為.......windows灌好後總要備份磁區吧!所以這軟體分享勉強屬於這版塊(版主見諒).......其實.....我覺得分享在這區塊比較舒服.........


...信心大受打擊...各位高手幫幫我~"~

    如題...最近要考試瞭...前幾天他纔公佈程式設計的考古題... 我用的是printf...他用的卻是cout...請問這兩者有什麼不一樣嗎@@?? 可以幫我介紹一下cout嗎?? 有看到條件運算式是if(!z)這是什麼意思?? 在宣告的時候看到i.......


.什麼叫全片幅阿..

    看到單眼相機有的叫全片幅機 這是什麼意思阿~~有沒有白話一點的解釋 洗齣來的照片比較大張嘛? 是這種意思嘛.... 原諒我的笨問題....但我真的想知道白話一點的意思~~ 感謝大大指點小弟的問題.......


000webhost.com 1500MB/100GB/PHP/MYSQL/FTP -No Ads

000webhost.com 1500MB/100GB/PHP/MYSQL/FTP -No Ads

    本帖最後由 danielpaggy 於 2009-8-21 08:49 編輯 » Free Web Hosting Disk Space         1500 MB Bandwidth         100,000 MB = 100 GB! Domains Allowed         Unlimited Control Panel         cPanel, view demo Ads on your pages?         No Ads or Banner.......


0x7e8342a4記憶體不能為Read

    我在使用gogobox下載就會齣現0x7e8342a4記憶體不能為Read 請問該如何解決這個問題呢 謝謝 [ 本帖最後由 tone.chang 於 2008-12-29 21:40 編輯 ].......


1.5GB/100GB/FTP/PHP/Mysql/可架ucenter 空間/速度優

    本帖最後由 李斯特霍華 於 2009-8-31 12:42 編輯 這個空間之前隻是得250mb容量,現在加為1.5GB,流量100GB,挺好用的空間! 遊客,如果您要查看本帖隱藏內容請迴覆!請點擊“迴覆按鈕”查看隱藏內容!迴覆 請以「感謝作者」代替迴帖!!.......


100MB/ASP.net 3.0/Access/SQL 2005/速度優

100MB/ASP.net 3.0/Access/SQL 2005/速度優

                                                                                                                                                             100MB Free Web Space                                                                         F.......


105M/3GB/Asp/Asp.net/MS ACCESS/無廣告

    本文章以審核 空間類型:網頁空間            適用者:個人////商務空間:105MB月流量:3GB支援語法:ASP, ASP.NET v1.1,2.0,3.0上傳:FTP///WEB單檔大小:10MB你的廣告:允許廣告:無你的網站網址:2級域名後颱:自製資料庫MS Access資料庫申請地址:遊客,如果您要查看本帖隱藏內容請迴覆!請點擊“迴覆按鈕”查看隱藏內容!迴覆 以下為完整的介紹和申請說明 遊客,如果您要查看本帖隱藏內容請迴覆!請點擊“迴覆按鈕”查看隱藏內容!迴覆.......


10Steps.SG Photoshop CS3 教學網站

    大傢好。我最近新開瞭一個網站專門教導人們如何使用Photoshop來做許多不同的效果。 http://10steps.sg 如果學習時遇上睏難可在部落格上留言。我會盡快答復。 請多多指教 [ 本帖最後由 mayday03225 於 2008-1.......


1G vcd如何燒錄1片vcd

    1G vcd如何燒錄1片vcd 請問,你的問題是什麼?? 請修改問題內容,並請詳述問題。 否則視同灌水!! [ 本帖最後由 李斯特霍華 於 2008-10-31 00:19 編輯 ].......


1GB/10GB/PHP/MySQL/無廣告

    本文章以審核 空間類型:網頁空間      適用者:個人////商務             空間:1GB月流量:10GB支援語法:PHP4上傳:FTP單檔大小:8MB你的廣告:YES廣告:無你的網站網址:2級域名後颱:LayerdPanel資料庫MySQL 申請地址: 遊客,如果您要查看本帖隱藏內容請迴覆!請點擊“迴覆按鈕”查看隱藏內容!迴覆.......


1GB/10GB/PHP/mSQL/無廣告

    * 1 GB of free web space* 10 GB bandwith* PHP4 & PHP5, SQL support* Pre-installed scripts* Incredible support* Powerful server network                        * No forced ads* Free web statistics (awstats)* Good neighborhood* Instant activation* Add .......


1Gb區網沒有發揮效能,麻煩有設定過的人教一下

    本帖最後由 danielpaggy 於 2009-4-15 13:09 編輯 小弟自己在傢中架設瞭1Gb的區網,設備如下 IP分享器:DIR-655 NAS:QNAP TS-101 電腦A:主機闆內建網卡 Marvell Yukon 88E8053 Gigabit網卡 電腦B:主機闆內建網卡Realtek rtl8168Gigabit網卡 網路綫:cat.6網路綫 設定:各電腦手動設定給予192.168.0.X的不同ip 子網路遮罩皆為:255.255.255.0 各電.......


20 iMAC 來繪圖

    因為錢的問題隻能買最便宜的IMAC 顯卡隻有ATI Radeon HD 2400 XT 這樣適閤跑PS or 3D軟體之類的嗎? 安裝XP現在買不到正版的... 不信任VISTA 用Super XP 能安裝嗎? 購買後再加裝記憶體現在大概要.......


2005MAP 灌瞭就是開不起來

    請問我灌好2005CAD MAP(因為工作需要),不知為何就是開不起來,一直齣現錯誤訊息,狀態列寫在C:program filesautodesk map 3d 2005acmapdwfapi.arx arx指令中發生異常狀況,在下麵黃色驚嘆號裏寫未處理的.......


2008年 最受歡迎 iPhone / iPod 配件齣爐

    轉自:http://www.mobile01.com/topicdetail.php?f=177&t=867072&last=9373520 Macworld 選齣來的 2008 最愛 iPod 配件 ( Our favorite iPod acces.......


2008年台灣液晶電視代工情況

    液晶電視價格快速滑落,也讓國際電視品牌廠傢對颱釋齣電視代工訂單增加,且全球前5大電視品牌廠傢,幾乎均跟颱廠有所閤作。 目前佳世達手中握有飛利浦、三星電子、明基、樂金電子等品牌廠傢的電視訂單,2008年電視總齣貨量約達近百萬颱的規模;而冠捷則有飛利浦、.......


2012年用DDR4記憶體到來 起步2133MHz

2012年用DDR4記憶體到來 起步2133MHz

      盡管DDR3內存還隻是被少數高端用戶和發燒友使用,但內存廠商已經開始在規劃下一代DDR4內存瞭,初步預計四年後登場,屆時會再次帶來更低的電壓和更高的頻率。根據奇夢達的路綫圖可以看到,最近兩年的主要方嚮是將DDR3的標準電壓從1.5V降低到1.35V,同時逐步提高主流頻率,從 1066MHz到1333MHz再到1600MHz。到2011年,1.35V的DDR3 1600將會大麵積普及。而在2012年,DDR4時代來臨,電壓降至1.2V,頻率提升至2133MHz,次年進一步將電壓降至1.......


20GB/20GB/無廣告/PHP/MySQL

    本文章以審核 空間類型:網頁空間          適用者:個人////商務                   空間:20GB月流量:20GB支援語法:PHP4上傳:FTP單檔大小:10MB你的廣告:允許廣告:無你的網站網址:2級域名後颱:LayerdPanel資料庫MySQL申請地址:遊客,如果您要查看本帖隱藏內容請迴覆!請點擊“迴覆按鈕”查看隱藏內容!迴覆.......


20左右吋液晶螢幕,該買哪一個牌子好?

    最近想把臥房的電視換掉,但是不知道該買哪個品牌好? 預算大概15,000以內,請大大介紹一下吧~.......


24-105 L lens

    有颱Canon 40D相機,請問 24-105 L的鏡頭適閤嗎?---拍人像用!.......


24吋液晶螢幕一問

    最近在存錢 想說要呼應口號 擴大內需 剛好傢裏的小螢幕玩遊戲不太爽快 字都擠在一起 想說換颱24吋液晶螢幕 不知道有沒有一萬元左右的國産品牌 適閤玩遊戲或看影片的液晶螢幕呢.......


24吋電腦螢幕有哪台比較好?

    想要幫電腦換一颱24吋的螢幕 目前考慮的幾颱是 ASUS MK241H ViewSonic Q241wb-2 ACER P243W 或 P244W 不知道有沒有人用過這幾颱? 哪一颱的C/P值比較高呢?.......


250 MB /100 GB /FTP/PHP/MySQL/無廣告

250 MB /100 GB /FTP/PHP/MySQL/無廣告

    [分享]250 MB /100 GB /FTP/PHP/MySQL PASS 建議不要重復申請 一個IP申請一個就足夠拉 多申請會被砍帳號 而且資料建議要認真填 申請資料不實一樣會被砍 一個帳號就夠啦 因為他可以擴張空間帳號 但基本上你一定要有使用纔行 如果你申請後太久沒有使用他一樣會砍 但一旦上傳後 可以活超久 他登入是採E-mail 你隻要申請一個帳號 就可以擁有很多網域 檔案下載測試 SMG編碼 ===========================.......


25GB+250GB月流量+php+mysql+LP

    本文章以審核 25GB+250GB 這對普通論壇或網站一相當充足 且網路不遜於虛擬主機 在加上他的新款後颱 我真心推薦 申請網址 遊客,如果您要查看本帖隱藏內容請迴覆!請點擊“迴覆按鈕”查看隱藏內容!迴覆 [ 本帖最後由 a511052003 於 2008-7-26 11:06 編輯 ].......


25款新手機網路曝光 宏達電傳洩密

    去年最賺錢的公司宏達電,沒想到新的一年纔剛開始就濛上一層陰影!因為它還沒推齣的手機一連25款居然在網路上曝瞭光,外界猜測如果真是洩密,牽涉的層級恐怕不低。 全文 http://news.pchome.com.tw/finance/nownews/20090120/index-12324279132108262003.html 25 款手機搶先看 遊客,如果您要查看本帖隱藏內容請迴覆!請點擊“迴覆按鈕”查看隱藏內容!迴覆.......


2GB/10GB/PHP/MySQL/無廣告/單檔8MB

    本文章以審核 空間類型:網頁空間        適用者:個人////商務                空間:2GB月流量:10GB支援語法:PHP5上傳:FTP單檔大小:8MB你的廣告:允許廣告:無你的網站網址:2級域名後颱:LayerdPanel資料庫MySQL申請地址:遊客,如果您要查看本帖隱藏內容請迴覆!請點擊“迴覆按鈕”查看隱藏內容!迴覆.......


2GB/20GB/PHP/MySQL/無廣告

    本帖最後由 a511052003 於 2009-5-18 21:56 編輯 本文章以審核 空間類型:網頁空間         適用者:個人////商務                  空間:2GB月流量:20GB支援語法:PHP5上傳:FTP單檔大小:1MB你的廣告:允許廣告:無你的網站網址:2級域名後颱:LayerdPanel資料庫MySQL申請地址:遊客,如果您要查看本帖隱藏內容請迴覆!請點擊“迴覆按鈕”查看隱藏內容!迴覆.......


2片DVD 用成一片 可以直接復製0.99GB 的檔嗎?

    如果有2..3片 DVD 我可以復製裏麵  0.99GB 的檔嗎?? 再用TMPGEnc DVD Author 3 with DivX Authoring 來做選單   再播放器來看???? 如果不能復製  或是復製過去畫質有問題(防拷)   .......


2聲道音效卡接2.1聲道喇吧??

    對喇吧實在是不懂 請問一下SE-90PCI這張卡能接2.1聲道喇吧嗎?? 接上去之後重低音箱能有作用?? 麻煩大大解說一下 謝謝嚕 [ 本帖最後由 亮皮 於 2008-10-29 00:33 編輯 ].......


3.5G無綫網卡打遊戲的問題

    請問用中華電信3.5G無綫網路來打遊戲會不穩嘛 我要拿來打魔獸世界的 而我是桌上型電腦 為什麼不用有綫的.. 因為住外麵的地方不方便申請有綫的~~(有綫的比較穩~~我也想要.. ) 在此先感謝大傢的迴答 對瞭~我是在颱北市使用的~ [ 本帖最後.......


3.6GB/3.6GB/PHP/MySQL/無廣告/單檔8MB

    本文章以審核 空間類型:網頁空間          適用者:個人////商務                  空間:3.6GB月流量:3.6GB支援語法:PHP5上傳:FTP單檔大小:8MB你的廣告:允許廣告:無你的網站網址:2級域名後颱:LayerdPanel資料庫MySQL申請地址:遊客,如果您要查看本帖隱藏內容請迴覆!請點擊“迴覆按鈕”查看隱藏內容!迴覆.......


32-bit版 Windows XP使用超過4G記憶體

32-bit版 Windows XP使用超過4G記憶體

    32-bit版 Windows XP使用超過4G記憶體 之前就聽聞XP 32bit版隻能抓到3.xGB的記憶體,就算RAM插的再多也沒用, 不過後來在一個Blog看到彆人寫的文章 "密技 / 塞爆4G記憶體!(http://slv922.pi.......




女朋友用電腦

AMD EPYC處理器為Azure Data Explorer使用者帶來效能提升

(C++)有沒有高手可以幫我看一下..完全Compile不齣來@@


前一篇新聞
(C++)利用C++語言撰寫撲剋牌比賽的小程式
后一篇新聞
(C/C++) C/C++語言做成視窗化的程式





© 2025 - quweinews.com. All Rights Reserved.
© 2025 - quweinews.com. 保留所有權利