定義如下.F(1)=1,F(2)=1,F(n)=f(n-1)+f(n-2)
計算前45項將值存入一維陣列A中
出來答案例如:
第3項為2
4 3
5 5
6 8
7 13
8 21
9 34
等等拜託幫幫我
幫幫我....請快點全班在等....拜託
2007-03-23 10:30:39 補充
我的程式是Dev C++的幫幫我全班在等
2007-03-23 06:41:43 · 3 個解答 · 發問者 Anonymous
我想用ASP.NET寫會員登入頁面,應怎麼做比較好,
我已經建好會員資料庫,已經用SqlDataSource連結好了,
頁面上也有輸入帳號和密碼的TextBox,按鈕也做好了,
程式碼要如何寫呢?
雖然ASP.NET有內建的套件,但是不太適合我的需求,所以我想自己建一個,
我以前是學ASP的,現在想是是換成ASP.NET,希望同好一起討論。
2007-03-23 05:11:43 · 3 個解答 · 發問者 睡睡賢者 5
我想請問一下浮點數float.double.和long double的值域該怎麼計算範圍呢?(請附詳細的計算過程)謝謝︿︿
2007-03-22 21:30:47 · 1 個解答 · 發問者 雁 1
試哪裡不行阿 為何不能跑
#include
int factor(int,int);
int main(void)
{
int num1,num2; /* 要求最大公因數的兩個數 */
int a,b,c; /* 依次為除數、被除數、餘數 */
printf("請輸入兩個數字\n");
scanf("%d %d",&num1,&num2);
system("pause");
return 0;
}
int factor(long num1,long num2)
{
c = num1%num2; /* 先計算一次餘數 */
b = num2; /* 以其中一個數為被除數 */
while(c!=0) /* 計算輾轉相除的迴圈 */
{
a=b; /* 指定前一次除數為新的被除數 */
b=c; /* 指定前一次餘數為新的除數 */
c=a%b; /* 求出新的餘數 */
}
printf("%d 與 %d 的最大公因數是 %d\n",num1,num2,b);
}
2007-03-22 19:07:13 · 2 個解答 · 發問者 師 1
要用遞迴函式做
1+2+3~+100的總和
#include
#include
void add(void);
int main(void)
{
int i,sum=0;
add();
system("pause");
return 0;
}
void add(void)
{
for (i=1;i<=100;i++)
sum=sum+i;
printf("1~100的總和等於 %d\n",sum);
return;
}
2007-03-22 18:54:50 · 2 個解答 · 發問者 師 1
一般文字連結,如何出現這個,就是滑鼠移過去有個框裡面有字
如圖 http://p3.p.pixnet.net/albums/userpics/3/2/223932/1174570590.jpg
請問又在文字的連結語法中加什麼,才可以?
2007-03-22 17:42:28 · 2 個解答 · 發問者 柔小柔 3
由於是初學者
目前正在努力學習中
圖片參考:http://tw.yimg.com/i/tw/blog/rte/smiley_1.gif
資料表叫TW
欄位分別是id1,date1,total1這三個欄位
(id1,date1這兩個欄位是key)
請問:
我如何寫一個預儲程序
把以下這筆資料寫到資料表中呢?
A1,200703,500
如果key重覆的話,就不能寫入
麻煩了,謝謝
2007-03-22 17:38:25 · 3 個解答 · 發問者 Anonymous
我開了2個表單From1和From2
From1設了1個按鈕可以跳到From2
From2設了Drive1和Dir1和File1和1個按鈕
且已寫好程式可以找到桌面上的txt文字檔
之後就卡住寫不出來了
請問如何讓From2的按鈕按下去後
From2關閉,然後From1的TextBox中顯示txt裡面的文字?
2007-03-22 15:00:43 · 1 個解答 · 發問者 Larry 5
如何設計完善的餐飲用的Q&A
要列哪些項目???
有哪些網站可以參考???
或是有Q&A的實例或範本可以提供???
請各位有經驗或有管道的大大們幫忙!!!
2007-03-22 06:38:48 · 1 個解答 · 發問者 ? 5
最近在做購物網站,現在遇到一個問題,就是商品排列的問題,
在我的網站顯示出很多的購買商品圖片簡介,然後有興趣的人在點進去可以看詳細內容,這些我都做出來了。
但是在排列上我想要左右左右左右這樣子順序往上排要怎麼用???像是表格一樣,還是一定要一樣一樣資料庫慢慢讀入阿??
因為我用了重複區域後是垂直排列,我要怎麼做成像yahoo
一樣可以一次橫排兩三樣商品然後分幾行這樣,
不知道各位聽不聽的懂呢??
2007-03-22 04:16:10 · 3 個解答 · 發問者 阿信 1
請改為 a. 先輸入下面將輸入分數之個數
b. 跟據 a 接受所有輸入之分數
c. 按大小輸出所有輸入之分數
d. 重覆 a 直到輸入0
import java.io.*;
class Sample9
{
public static void main(String args[]) throws IOException
{
BufferedReader br =
new BufferedReader(new InputStreamReader(System.in));
int test[] = new int[5];
System.out.println(test.length +
"請輸入分數:");
for(int i=0; i
test[i] = Integer.parseInt(str);
}
for(int s=0; s
int tmp = test[t];
test[t] = test[s];
test[s] = tmp;
}
}
}
for(int j=0; j
test[j] + "分。");
}
}
}
2007-03-21 22:26:18 · 1 個解答 · 發問者 啟貿 1
題目:以array實作Stack,包含下列函數
Push,Pop,Top,Print_Stack會以Pop方式將stack清空,並依序印出stack中的資料
測試資料:
Push(23)Push(24)Push(25)Pop()Top()Push(26)Print_Stack();
public class Stack_Function {
//The size of the stack
int MaxSize = 10;
//Practice the stack via array
int stack[] = new int[ MaxSize ];
//The pointer of the stack
int top = -1;
//Push function
void push (int value)
{
//Test whether the stack is full or not
if(top >= MaxSize-1)
{
System.out.println("The stack is full!!! Cannot push any item into the stack!!!");
}
//If not, we can push the item into the stack
else
{
//Push the item into the stack
top++;
stack[top] = value;
//Print out all of the items in the stack
System.out.printf("After pushing %d, the items in stack are ( top -> bottom ): ", value);
for(int i=top; i>=0; i--)
System.out.printf("%d ", stack[i]);
System.out.println();
}
}
//Pop function
void pop ()
{
//Test whether the stack is empty or not
if (top < 0)
System.out.println("The Stack is empty!!! Cannot pop out any item!!!");
//If not, thus we can pop out the item from stack
else
{
//Pop out the item from stack
System.out.printf("After poping %d, the items in stack are ( top -> bottom ): ", stack[top]);
top--;
//Print out all of the item in the stack
for(int i=top; i>=0; i--)
System.out.printf("%d ", stack[i]);
System.out.println();
}
}
//Get the value of the top item of the stack
void top ()
{
//Test whether the stack is empty or not
if (top < 0)
System.out.println("The Stack is empty!!! Cannot get the top item!!!");
else
System.out.printf("Get the value of the top item from stack: %d\n", stack[top]);
}
//Take out and print out all of the items in the stack
void Print_Stack ()
{
System.out.print("Take out all of the items from stack: ");
//Take and print out all of the items
for(; top>=0; top--)
System.out.printf("%d ", stack[top]);
System.out.println();
}
}
以上是我寫出來的,但是我希望能夠再簡單一點容易懂一點.
2007-03-21 20:30:43 · 2 個解答 · 發問者 Anonymous
請改為 a. 先輸入下面將輸入分數之個數
b. 跟據 a 接受所有輸入之分數
c. 按大小輸出所有輸入之分數
d. 重覆 a 直到輸入0
import java.io.*;
class Sample9
{
public static void main(String args[]) throws IOException
{
BufferedReader br =
new BufferedReader(new InputStreamReader(System.in));
int test[] = new int[5];
System.out.println(test.length +
"請輸入分數:");
for(int i=0; i
test[i] = Integer.parseInt(str);
}
for(int s=0; s
int tmp = test[t];
test[t] = test[s];
test[s] = tmp;
}
}
}
for(int j=0; j
test[j] + "分。");
}
}
}
2007-03-21 19:30:54 · 1 個解答 · 發問者 啟貿 1
如何用c語言讀取一個binary檔呢?
而且把他印出來~(printf)
double value;
FILE *cfPtr;
if ( ( cfPtr = fopen( "136.bin", "rb" ) ) == NULL ) { }
else {
printf( "%s\n", "value" );
fscanf( cfPtr, "%lf", &value );
while ( !feof( cfPtr ) ) {
printf( "%7.2f\n", value );
fscanf( cfPtr, "%lf", &value );
}
fclose (cfPtr);
這是我寫的 可是跑出來確是無窮迴圈
不知有那位大大可以幫我解決
感激不盡
2007-03-21 16:28:51 · 1 個解答 · 發問者 shinshin7 1
我想朝美編網頁方面學習
Dreamweaver跟flash
進階一點的課程要如何學習?
因為補習班都是很基礎的= =
2007-03-21 16:23:33 · 7 個解答 · 發問者 ? 1
A=(35;22;56;12;)
由程式讓A由小排到大
也就是 A=(12;22;35;56)
請幫我解題.謝謝
*
答案由MSGBOX回應 _
原資料:35:22:56:12:
排列後:12:22:35:56
2007-03-21 15:02:29 · 1 個解答 · 發問者 iam_1_001 5
有一段程式碼不大懂它的意思.....可否幫我註解程式碼和執行的次數...謝謝各位大大
/** BubbleSortApplet
* Ping-Che Chen
*/
import java.lang.*;
import java.util.*;
import java.awt.*;
import java.applet.*;
public class BubbleSortApplet extends SortApplet {
public void run() {
int i, j;
for(i = number - 1; i >= 0; i--) {
for(j = 1; j <= i; j++) {
if(getData(j-1) > getData(j))
swapData(j-1, j);
}
}
}
}
程式碼轉po於http://www.csie.ntu.edu.tw/~b5506061/sort/BubbleSortApplet.java
感謝各位高手大大....
2007-03-21 14:45:10 · 1 個解答 · 發問者 超人不會飛 1
例如我先剪貼網址,再在網址後加字,刪去網址,就變hotlink,如下
漢英詞典,但每次加字後,hotlink會顯示中文字,令到未能直入網址,要刪去中文字。
唔知今次得唔得,我知係斜體按鈕右旁有地球加瑣鍊,但唔係好識用喎!
我想問點解有時加唔到hotlink,有時又可以呢?
2007-03-21 12:38:18 · 1 個解答 · 發問者 丫發 7
請問這包含有PHP腳本的HTML網頁
這PHTML能使用Dreamweaver編輯嗎?
還是只能用Perl編輯?
2007-03-21 08:50:46 · 1 個解答 · 發問者 ? 3
有沒有製作簡單靜態網頁的教學網站HELP
學校老師說要做一個網頁
>"<
我沒有經驗... 所以想 看看有沒有 教學的網站
幫個忙^^
2007-03-21 08:02:57 · 2 個解答 · 發問者 ? 1
class Foo{
void doStuff(){
int a=7;
this.doMore(a);
}
}
↑怎麼將final放在區域變數??
2007-03-20 23:33:43 · 1 個解答 · 發問者 虫 1
以下是5*5的魔方陣程式碼,但執行結果並不是正確的
請知道的人幫我找出錯誤,謝謝!@@"
Private Sub Form_Click()
Dim M, I, J, X1, Y1 As Integer
Dim A(5, 5) As Integer
X = 1: Y = 3
For M = 1 To 25
A(X, Y) = M
X1 = X - 1: Y1 = Y + 1
If X1 = 0 Then X1 = 5
If Y1 = 6 Then Y1 = 1
If A(X1, Y1) <> 0 Then
X1 = X + 1
Y1 = Y
If X1 = 6 Then X1 = 1
End If
X = X1: Y = Y1
Next M
'印出結果
For I = 1 To 5
For J = 1 To 5
Print A(I, J); Tab(J * 5);
Next J
Print
Next I
End Sub
答案為
24 15 1 17 8
14 5 16 7 23
4 20 6 22 13
19 10 21 12 3
9 25 11 2 18
2007-03-20 19:29:24 · 4 個解答 · 發問者 piggy 1
如何用C語言寫f(x)=exp(-X)-X 的根
超級緊急
請大大幫忙
小弟才剛學程式語言
但不幸的
卻要寫這麼難的作業
基礎都不好
只學了2小時
請大大幫幫我
以後的路我會好好走下去
2007-03-20 19:16:48 · 2 個解答 · 發問者 自由 1
//vc 204.cpp
//算數運算符號練習
#include
#include
int main( )
{
int a=2,b=3,c=5;
int x=b*b-4*a*c;
float y=b/a;
cout<<"a="<
<<"b="<
<<"c="<
}
那裡有問題啊??
為什麼compile都沒有問題啊!!
linking也沒問題啊!!
為什麼execute出來的y=1而不是=1.5呢??
不解???
煩請各位先知代為解答!!
感激不盡!!!
PS:因為排版問題 ,所以沒辦法像應用軟體上那樣。
2007-03-20 18:19:17 · 2 個解答 · 發問者 隆爺 2
假設我
C:\test\有好多個檔案
請問
圖片參考:http://tw.yimg.com/i/tw/blog/rte/smiley_4.gif
如何用vb6找出一個星期內有建檔的檔案有幾個呢?
也就是今天往前算六天
3/14至3/20
謝謝
2007-03-20 18:12:59 · 1 個解答 · 發問者 Anonymous
唔該你地吖,比埋個鍵盤表我,online game用,唔該..................
10點,想比20點呀,不過比唔到............................
2007-03-20 17:16:42 · 1 個解答 · 發問者 ? 2
我無名的相簿在相簿名稱下方都會有"new"的標示....
要怎樣才能把它弄掉呢??
囧rz...
哪位大大教我一下吧~拜託
2007-03-20 14:27:00 · 4 個解答 · 發問者 ? 1
如題...跟語言或是作業平台有關嗎?
麻煩簡易跟我說一下...謝謝...
需要對對Linux作業系統熟悉才行嗎...
2007-03-20 07:48:30 · 3 個解答 · 發問者 無垠 3
請問mysql的資料型態共有哪幾種呢?!
那各代表什麼意思?!
比如說有:
VARCHAR
CHAR
INT
我知道上面兩個是字串型態
不過有些都不知道差在哪裡?!
下面INT是數值型態
請問MYSQL全部的資料型態是哪些呢?!
有附註型態的嗎?!
日期型態有分有TIME和就日期的嗎?!
麻煩各位大大了~~謝謝!!!!
2007-03-20 07:40:06 · 1 個解答 · 發問者 菁怡 1
我在網上成功下載了一些簡體字型,但在word的字型選擇,找尋不到這些字型,同時當我下載英文字型,就能成功在word的文書檔找尋到,請問出了什麼問題????
2007-03-20 06:04:28 · 3 個解答 · 發問者 H 2
Showing 1111 to 1140 of 4923 questions