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

程式設計

[Selected]: 所有分類 電腦與網際網路 程式設計

用java如何寫出for迴圈,計算1~100之間整數的平方值.. 謝謝幫我解答!

2006-11-10 10:04:57 · 3 個解答 · 發問者 林俊宏 1

現在超級煩惱的~我沒有用過Dreamwaver希望有人可以教我哦!!我現在的問題是我有做一個頁框~就是下面可以連結的另一個框框但是我儲存好之後原本的主網頁都沒有出現~只有出現一個框框不知道未什麼會這樣!!!

2006-11-10 09:48:39 · 2 個解答 · 發問者 ? 7

請問各位word高手,我想要點文字就可以在文字的旁邊出現圖片,可是我用
超連結的話,我文字時就會跳到圖片那邊的位置,有辦法讓我點文字時,旁邊
就出現在連結的圖片嗎?
P.S...游標點文字圖就會出現在旁邊...
請各位幫幫忙囉...感謝哦!

2006-11-10 08:54:04 · 1 個解答 · 發問者 ? 1

我個拍賣站想請網頁公司設計網頁,但我是住彰化不知各位大人是否知道彰化or台中有比較好的廠商可提供給我~~~最好是你們有親自合作過的,且價格公道不會亂加價格,服務好的。請各位大人如有此資訊麻煩提供一下~~謝謝~~

2006-11-10 05:21:54 · 11 個解答 · 發問者 小惠 1

利用Scanner來做
只能用if
不能用迴圈做
就是用最基礎的邏輯判斷來做
輸出最大值
作法相似於下面的
我只會兩數比大小
下面是我寫的
import java.util.Scanner;
public class S比大小 {
public static void main(String[] args) {

Scanner input=new Scanner(System.in);

int a,b;
System.out.print("Enter first integer");
a=input.nextInt();
System.out.print("Enter second integer");
b=input.nextInt();

if(a>b );
System.out.printf("max is %d\\n",a);
if(a System.out.printf("max is %d\\n",b);
if(a==b );
System.out.printf("max is %d\\n",b);
}

}

2006-11-10 05:05:53 · 2 個解答 · 發問者 rayray 1

因為我是學java的,所以c++的語法很多看不懂^^"
像setw,<<,end1,const,cout之類的
煩請大家解釋一下,這是有關quicksort的,感謝各位
#include
#include
#include
#include

const int ARR_SZ = 10;

void iterative_quick(int A[],int size);
int partition(int A[],int first,int last);
void swap(int& a,int& b);
void display_array(int A[],int size,char message[]);

void main()
{
srand((unsigned int)time(NULL));
int A[ARR_SZ];
for (int i=0; i < ARR_SZ; ++i)
A[i] = rand() % 100;
display_array(A,ARR_SZ,"Random array:");

iterative_quick(A,ARR_SZ);
display_array(A,ARR_SZ,"Sorted array:");
}

void iterative_quick(int A[],int size)
{

int first=0,last=size;
int left_pending[ARR_SZ],right_pending[ARR_SZ],top=0;
do {
if (top >0)
{
top--;
first = left_pending[top];
last = right_pending[top];
}

while (first < last)
{
int pivot =partition(A,first,last);
left_pending[top] = pivot + 1;
right_pending[top] = last;
top++;
last = pivot - 1;
}
} while (top > 0);
}

int partition(int A[],int first,int last)
{
int pivot = A[first];
int left = first + 1,
right = last;

do {
while (left <= right && A[left] <= pivot)
++left;
while (left <= right && A[right] > pivot)
--right;
if (left < right)
swap(A[left],A[right]);
} while (left <= right);
swap(A[first],A[right]);
return right;
}

void swap(int& a,int& b)
{
int temp = a;
a = b;
b = temp;
}

void display_array(int A[],int size,char message[])
{
const int NUM_COLS = 10;
cout << endl << message << endl;
for (int i=0; i < ARR_SZ; ++i)
{
cout << setw(5) << A[i];
if ((i + 1) % NUM_COLS == 0)
cout << endl;
}
cout << endl;
}

2006-11-09 20:38:58 · 1 個解答 · 發問者 ? 1

小弟我目前遇到一個困難我需要一個語法讓使用者進入網頁後自動顯示另一個網頁的內容就像有人會在知識+直接連結上另一個人發言的文章

2006-11-09 17:23:52 · 1 個解答 · 發問者 午後雷陣雨 4

我想g d符號係點打出黎嫁?? 即係好似e d錦ar : ♧ ° > ω < ζ + + * ° 。 * + + " ╮ + ° × * ﹍ × . " [ ▂ | ﹢ °°° . ° * + ..:: * [] 〞 ☆ ♀ e d我係複製嫁咋 仲有我要的符號不是指e d ~!@#$%^&*()_(*&@$%^&*( 明嗎??

2006-11-09 15:57:09 · 3 個解答 · 發問者 ? 1

我現在要vb中放一張圖片(原圖片大小為1024*800)
在vb的picture或image中顯示(大小為200*150)
如何做?

我不管怎做,做出來的結果
要不就是全圖,要不就是只看得到圖的一角
而我現在是想要以200*150的大小來顯示1024*800的圖
也就是原1024*800的圖要"全顯示"在200*150的picture或image中

有人知道怎做嗎?

2006-11-09 15:41:27 · 2 個解答 · 發問者 ? 1

這是我自己寫的一個C++的程式 目的是要跑出(X+Y)N次方的展開各項係數
然後排序出來
以下為程式碼:
#include
#include

using namespace std;
long oop(int a,int b);
long max(int factory);

int main()
{
int n=0;
cout<<"請輸入整數N:"< cin>>n;
cout<<"(x+y)N次方的各項係數為"< for(int count=0;count<=n;count++){
cout< }



system("PAUSE");
return 0;
}
long max(int factory)
{
int k=1;
if(factory==0){
k=1;
}
else{
for(int l=1;l<=factory;l++){
k=k*l;
}
}
return k;

}
long oop(int a,int b)
{
int sum=0;

if(a<0){
cout<<"請重新輸入"< }
else {
if(a==0){
sum=1;
}
else{

sum=max(a)/(max(b)*max(a-b));
}
}
return sum;
}
但是卻只能跑到N輸入13...14以後就會出現0或者負數 這是怎麼回事 我的邏輯錯誤或是有什麼BUG嗎?我實在想不出來....

2006-11-09 14:42:49 · 3 個解答 · 發問者 ? 1

我的c:\\下有兩個檔案分別是t1.txtt2.txt我想要把兩個檔案相同的列作刪除請問要如何作呢?例如:t1.txt的第五列是"ABC DEF"而t2.txt的第八列也是"ABC DEF"那就把t1.txt的第五列及t2.txt的第八列作刪除麻煩了,謝謝

2006-11-09 14:21:29 · 1 個解答 · 發問者 橘子 5

http://www.meworks.n et:2000/2444/DeathFo nt01.zip
這是死亡筆記字體下載檔,
我解壓縮後卻不知如何加到word裏,
我好想試下打, please help me!

2006-11-09 13:36:44 · 2 個解答 · 發問者 ? 7

請幫忙回答以下問題(簡單說出重點就好)麻煩一下,不要複製網頁,請給我口語化的答案What is the scope rule? Name precedence?Compare score rule vs. lifetime of a variableHow to solve the problem of file scope to reference out of file functions or variables.Use “Global” variables or function, or use “extern” keyword

2006-11-09 12:50:07 · 1 個解答 · 發問者 Anonymous

 麻煩一下,不要複製網頁,請給我口語化的答案why do we have to declare a function to be “void”? why use “return 0”簡單解釋一下nestedfunction,debug and “testing”

2006-11-09 12:49:02 · 2 個解答 · 發問者 Anonymous

describe the characteristics of static variable with scope rule請大概描述一下namespace用途 請高手幫忙回答上述兩問題

2006-11-09 12:29:57 · 2 個解答 · 發問者 Anonymous

 what is the side effect of declaring global variables.why the C/C++ cannot resolve the problem of out of bound access of array data請高手幫我回答一下上述兩個問題

2006-11-09 12:28:06 · 4 個解答 · 發問者 Anonymous

問題是這樣的我輸入幾組座標當輸入完畢後將所有點座標串連起來就會形成一塊區域A(假設輸入座標皆能符合構成區域條件且所有串連線不相交)這時再輸入一點座標B要能夠判別座標B是否在區域A內.這個問題對在下而言蠻難的,需要眾高手幫個忙,一起思考 @@"程式碼也好,觀念想法或公式也好,在下都十分歡迎:>最後感謝每一個把這篇問題文看完的朋友,謝謝 ^^

2006-11-09 04:21:50 · 6 個解答 · 發問者 ? 5

資料庫格式
學號 姓名 國文 數學 英文 歷史 總分
設有200個學生,國文 82 分的學生有3位學號各為(006、030、108)
以上會產生一個查詢資料
如何做才能得到一個學號各為(007、031、109~~~~也就以上的學號+1號的學生)的學生各科成積表!感謝!

2006-11-09 00:27:44 · 1 個解答 · 發問者 ? 1

(*,*)中的 * 意義是啥?
其中的 * 可以用數字代替嗎?
ex.(5,10)...那數字又代表什麼?
fortran如何看的懂 + , - 號呢?
還有什麼時候要用實數,什麼時候用整數,兩者的誤差??
fortran有啥基本指令.....
關於陣列...一維,二維怎儲存記憶體??
還有有關於主程式與副程式的參數轉換問題??
另外迴圈的概念是啥??

因為要考試了..但是我都不會...如今大三了...
資概是重修的科目...對我並不是主科...所以不想再耗下去了
所以請各位大大教教我吧..
還是有啥基本fortran的書...
感謝各位大大幫忙

2006-11-08 22:21:36 · 2 個解答 · 發問者 一樣是杰 2

如何用PHP寫一個程式
在一個在圖檔裡顯示IP位址

2006-11-08 19:09:11 · 2 個解答 · 發問者 哇係帥氣a阿智 1

想請問一下~我從網站找到一個asp.net的專案
他是連Access的資料庫
可是我只有學過用SQL當資料庫,我想自己再建一個SQL的資料庫來連結
請問有方法可以改成連結SQL的資料庫嗎

2006-11-08 18:24:39 · 3 個解答 · 發問者 ? 1


有什麼不依樣!!!!分別是什麼意思?

2006-11-08 17:48:08 · 2 個解答 · 發問者 宇汝 1

當Frontpage 用素材另存新檔找背景圖案, 可是開始做背景圖插入時只是顯示背景的小部份,什麼原因不能張背景圖全部首頁的效果。

素材網 : http://www.wish1234.f4w.net/material.htm

2006-11-08 16:45:00 · 1 個解答 · 發問者 michelle 2

這次修影像處理的課,他有出一個作業。
依我詢問之下,有人說可以用VB.NET的視窗應用來寫。

題目:
寫一個程式讀入二值化(純黑白)圖片 然後標出各個區塊
以下列兩種演算法去實做
labeling four adjacent
labeling eight adjacent

有人說可以用OpenFileDialog的元件來做,
有人可以大概告訴我一個方向嗎~"~

麻煩各位了!!

2006-11-08 11:33:44 · 1 個解答 · 發問者 Mi 1

. 請設計一程式,判斷所輸入的數字是奇數(odd)或偶數(even)。
(1)Input number: 2 (2)Input number:1
even odd


請設計一程式,輸入兩數字,進行加、減、乘、除、取餘數的運算。
(請考慮除數不得為0,若使用者輸入除數為0,必須顯示不能運算。)
測試值:
(1)Input a,b: 6,2 (2)Input a,b:6,0
a+b=8 a+b=6
a-b=4 a-b=6
a*b=12 a*b=0
a/b=3 a/b= can’t operate
a%b=0 a%b= can’t operate

2006-11-08 10:57:42 · 1 個解答 · 發問者 唸著倒麻幹你 1

我用vb寫一個程式,當我的程式在開啟的狀態,想按F1按鍵就要顯示說明 , 要如何寫阿?不管我的Focus在哪個物件都要能按F1按鍵就要顯示說明,當然我還要用其他的功能鍵(F1~F12)做其他的事例如:按F10存檔 , 按F9結束程式這樣用VB要如何寫呢?請各位大大幫個忙!!謝謝!!

2006-11-08 04:38:33 · 5 個解答 · 發問者 Nick 5

題目:
  是否能在五個數字間插入一些運算子使得結果為23?
  (((a1 O1 a2) O2 a3) O3 a4) O4 a5 '←考慮此算式會不會等於23
a1~a5為5個整數(順序可以隨便排列,但一定都要出現一次),O1~O4為運算子{+,-,*}的其中一個。舉例說明:
輸入5個整數 2,3,5,7,11 可以找到有一組運算式 (((11 * 3) - 5 ) + 2 ) - 7 = 23,所以輸出Possible。(當然,可以得到23的答案的運算式可能不只一組)若輸入的5個整數為 1,1,1,1,1 那就找不到任一種運算式的組合可以使答案為23,所以輸出Impossible。

輸入檔:輸入的第1列有一個正整數 N ,代表以下有幾組測試資料,每一測試資料一列,有5個整數。每個整數均介於 0 到 50 之間。
輸出檔:根據輸入的 5 個整數,判斷是否可能找到使其答案為 23 的運算式。

data.txt(輸入檔)
3
1 1 1 1 1
1 2 3 4 5
2 3 5 7 11

result.txt(輸出檔)
Impossible
Possible
Possible

2006-11-08 04:31:24 · 7 個解答 · 發問者 以晴 2

1What is the pointer syntax equilvalent of the following?

book[i] = manuscript[j];

a. *book = *manuscript;
b. *(book + i) = *(manuscript + j);
c. *book + i = *manuscript + j;
d. book + i = manuscript + j;

2 Pointers may be assigned which of the following?

a. all integer values
b. an address
c. NULL
d. both (b) and (c)

3 Which of the following is a repetition structure?

a. if
b. if/else
c. do/while
d. switch

4 Assuming that you have an integer instance variable named "fuelLevel", what is the proper code for a "set" method for that instance variable?

a. void setFuelLevel(int fuelLevel) {
this->fuelLevel = fuelLevel;
}

b. void setFuelLevel(int fuelLevel) {
fuelLevel = fuelLevel;
}

c. int setFuelLevel(int fuelLevel) {
return fuelLevel;
}

d. int setFuelLevel(int fuelLevel) {
this->fuelLevel = fuelLevel;
}

5 What will the following method output, assuming it is called three times in
succession?

void foo() {
static int x = 8;
cout << x--;
}

a. 8 7 6
b. 876
c. 765
d. 8910

2006-11-07 23:16:22 · 5 個解答 · 發問者 GodFromHell 1

0

#include
#include "stacksADT.h"
int main(void)
{
unsiqned int rum;
int*digit;
STACK*stack;
stack=createstack();
printf("ENTER AN INTERGER");
scanf("%d",&num);
while(num>0)
{
digit=(int*)malloc(sizeof(int));
*digit=num%16;
num=num/16;
}
printf("THE BINARY NUMBER IS : ");
WHILE(!emptyStack(stack))
{
digit=(int*)popStack(stack);
printf("%d",*digit);
}
printf("\\n");
destroyStack(stack);
return 0;
}
--------------------------------------------------------
不知道哪邊錯了 是照講義2進位推的
幫幫我~我要打16進位
另外我還要在這個程式裡加打
餘數 10=A 11=B 12=C 13=D 14=E 15=F
麻煩各位了!!!

2006-11-07 20:07:11 · 1 個解答 · 發問者 Vivian 1

有冇方法知到 msn d fd 有冇將我放去 黑名單 or 佢忍型我睇唔到佢

2006-11-07 19:40:18 · 2 個解答 · 發問者 king hei 3

fedest.com, questions and answers