台北 文山區
程式外包公司推薦

您附近有 1305 名 程式外包公司
尋找您附近的程式外包公司
地區
台北市
pro_search_arrow_down.png
區域
文山區
pro_search_arrow_down.png
免費取得報價
想要提供此項服務? 加入開始接案

如何找到程式外包公司?

回答幾個問題,告訴我們您的程式外包需求
在幾分鐘內,我們將為您找到最合適您的程式外包公司
比較多筆報價,選擇最適合您的程式外包公司合作

近期文山區程式外包案例

軟體開發
吳〇生    台北市 文山區
您需要開發的項目是?
其他:希望透過excel公式製作薪資條
您希望使用哪種程式語言?
其他:excel公式
您的項目目前狀態為?
有想法與介面流程設計
徐紹舜

$12000/ 單次
許一文
5.0
$2000/ 單次
JC Writing
5.0
洽談後報價
天橋科技有限公司
5.0
洽談後報價
瞻新資訊有限公司
5.0
洽談後報價
+2
1小時內收到5筆報價
軟體開發
何〇儒    台北市 文山區
您需要開發的項目是?
網站
您希望使用哪種程式語言?
Python
您的項目目前狀態為?
只有想法
賴庭岳
5.0
$6000/ 單次
劉軒宏
5.0
$2000/ 單次
許一文
5.0
$7000/ 單次
Oscar Lin

洽談後報價
Jacky
5.0
洽談後報價
+2
1小時內收到5筆報價

客戶對PRO360程式外包公司的好評

平均4.82
260 則評論
Justin
2025-04-14
從頭到尾的溝通都非常為客戶著想,原本我是想要開發一個軟體,結果溝通後發現那其實不符合我的需求,所以他還主動了解我的需求內容後,再建議我用更簡單有效的方式來解決問題。 其實中間因為我自己出差,所以有中斷3個月,真的很不好意思,但他還是願意盡量配合我的時間幫我完成製作。很細心的一位專家。
2025-04-14
韓承佑
2024-12-27
原本想說需要在一天內做完的急件沒有人要接 但這位先生卻找到了我們 並了解了我們的需求 努力幫我們趕著做 而且價格也非常合理 覺得一生的運氣都花在這裡了哈哈 而且這位工程師回訊息速度非常快速!! 體驗下來非常非常滿意!
2024-12-27
楊凱雯
2024-01-18
最近購買一套音頻處理程式碼,效果非常出色,專家溝通及服務也很好、很有效率。這些程式碼不僅提高了我的工作效率,也讓音頻分析和處理變得更加簡易直觀。對於需要處理大量音頻檔案的用戶來說,是一個非常值得投資的工具。非常推薦給尋找高效音頻處理解決方案的專業人士。
2024-01-18
石先生
2023-03-21
很多人跟我接洽 不過鄭老師給我的感覺最親切 我本來一開始打算放棄我要做的項目,但是鄭老師的堅持 !鼓勵 我。也很開心我有聽取建議 過程中不會很有壓力,反而像是朋友般的對談 結果也是完美的完成項目 第一次在這個平台就有很棒的體驗 下次還會再找鄭老師 繼續合作!
2023-03-21
朱怡樺
2025-04-10
很專業很不錯👍遠程幫我把電腦修好了~
2025-04-10

程式外包常見問與答

以下是消費者常提出程式外包的相關問題,我們提供專業的資訊為您解答:

請人寫APP多少錢?

如何創作一個app?

開發一個app要多久?

PRO360如何保障消費者的權益?

近期文山區程式外包需求

軟體開發
Phone
大〇生
台北市 文山區
顧客預算:一萬以下
交件時限:急件: 三天內
RD 工作
web 接案
Programmer 工作
1. 其他   2. C/C++   3. 其他   4. 其他   5. 沒有  
描述: 1. 學校作業   2. 大二生找專題教授   3. 就把這題寫出來就好   4. Description. The engineering calculator serves as a handy tool for performing calculations related to complex formulas. The following instructions provide tips for implementing the basic functionality of the calculator. Now, follow these instructions and proceed to code the calculator. 1. Design a calculator that can evaluate any expressions. ( ※ Include +, -, *, /, (, ), ^ ) [Ex.] ( 1.2 + 2.3 ) * ( ( 3.4 / 4.5 ) / ( ( - 0.6 ) + 7 * ( 1 - 1 ) ) ) ^ 2 [Ans.] 5.55007 2. Extend the calculator such that it can deal with sin, cos, tan, exp, log ... etc. ( ※ The units for sin and cos are degrees, and the base used for log is 10. ) [Ex.] sin ( cos 0 + 89 ) + cos 90 - log ( 1000 / 10 ) + exp 2 [Ans.] 6.38906 Note. You can implement more symbols, but please include at least all the symbols mentioned above. 3. Extend the calculator such that the program can handle multiple statements and print out the values for all variables. [Ex.] int a, b, c ; float d, e ; // integer variables // float variables a = 5 ; b = 7 ; c = ( 12 + 23 ) / ( a + 12 ) * ( b + 8 ) ; d = c + 1.2 + sin 45 ; e = d + b * 5.6 ; [Ans.] ( a, b, c, d, e ) = ( 5, 7, 30, 31.907, 71.107 ) Note. We can ensure that the variable types are limited to int and float, and the calculated float results should be rounded to 3 decimal places. Requirements. 1. Implement your program using C or C++ 2. Your program can be executed in two ways: A. After your user execute your program, let the user choose the mode. If the user chooses Direct Mode, you have to let the user type in formula then output the result on terminal. [Ex.] {Assume that your program named “calculator”} $ ./calculator Choose your mode: direct sin 90 + cos 0 2 B. The other mode user can choose is the File Mode. In this one you will let the user type input file name, output file name respectively. Do the calculation on input file then output them on output file. [Ex.] {Assume that your program named “calculator”} $ ./calculator Choose your mode: file Input file name: input.txt Output file name: output.txt 3. The file format for input and output will only be *.txt 4. User could add comment by using //, or /*, */ . Please remove it before starting your calculation methods. 5. If the user encounters any illegal errors (as divide 0, using variable unassigned, wrong symbols), please output an error message (the format can be arbitrary). 6. Please write a README or Report to introduce how to use your program and provide information on its implementation Examples. 1. Direct Computation Mode In [1]:./calculator Choose your mode: Direct 0+1 Out[1]:1 In [2]:./calculator Choose your mode: direct tan(90) Out[2]:infinity * The format of Infinity can be arbitrary In [3]:./calculator -d Choose your mode: direct 0++3 Out[3]:error * The format of error can be arbitrary In [4]:./calculator Choose your mode: direct 2 ^ 2 * exp ( 1.0 + 2.0 / 2 ) + 3.14159 * sin ( 89 + cos ( -0.0 )) Out[4]:403.142 2. File Mode In [1]:./calculator Choose your mode: file Input file name: in1.txt Output file name: out1.txt in1.txt: * Remember remove the comments int a, b, c; // integer variables float d,e ; // float variables a = 5 ; b = 7 ; c = (12 +23) / (a + 12) * (b + 8); d = c + 1.2 + sin 45; e = d + b * 5.6; out1.txt: (a, b, c, d, e) = (5, 7, 30, 31.907, 71.107) * The format of output can be arbitrary In [2]:./calculator Choose your mode: file Input file name: in2.txt Output file name: out2.txt in2.txt: * Remember remove the comments int a, b; /* integer variables */ float f, g, d, h, c; /* float variables */ a = 5 ; b = 7 ; c = (12 +23) / (a + 12) * (b + 8); d = (exp2+32)/6; f = c + 1.2 + sin 45; g = d + b * 5.6; out2.txt: (a, b, f, g, d, h, c) = (5, 7, 32.789, 61.200, 22.000, 0.000, 30.882) * The format of output can be arbitrary Hints. 1. If you encounter difficulties dealing with string-related issues, such as unnecessary whitespace or the need to remove comments, you can address your problems using regex notation. ( https://regex101.com/ ) 2. In terms of computation, utilizing Post-order Traversal can be highly beneficial for calculations. 3. If it is indeed challenging to implement two functionalities in the same executable, consider creating separate executables for each functionality (an executable for Direct Computation Mode and another for File Mode).   5. 三天內  
軟體開發
Phone
Josxxx
台北市 文山區
顧客預算:一萬以下
交件時限:一般件
RD 工作
web 接案
Programmer 工作
1. 其他   2. 不清楚,聽從專家的建議   3. 只有想法   4. 聽從專家的建議   5. 沒有  
描述: 1. Excel 資料擷取整理   2. 目前手上有300多個Excel檔(同樣格式從不同受訪者收來的問卷) 需要從300多個檔案的表單1、表單2、表單3擷取資料彙整成資料庫1, 資料庫2,資料庫3(也可以是一個大的Excel 表有所有的data), 希望能在一周內完成.  
免費取得報價