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

程式設計

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

在有些部落格裡有看到按圖片就連結網頁的設定,要怎麼做呢,就像下圖用紅線圈選起來的地方,下圖的部落格是http://tw.myblog.yahoo.com/jw!C1ltFdeZFQHlwQnx4mEZp7qvkw--/article?mid=2752

2006-11-27 06:42:46 · 2 個解答 · 發問者 瘋狂史萊姆 4

如題
請問要怎樣做資料庫?
用什麼系統做比較容易?
假如我想做個"CD借還"的資料庫
我該從何下手?
贈20分
PS勿叫我自己看書,懇請會做的願意教的能明說

2006-11-27 05:42:05 · 8 個解答 · 發問者 ? 2

請問
我要寫一個指令為 按某按鍵(輸入),某燈號會亮(輸出), 再按一下按鍵(輸入),燈號會滅(輸出), 要有3種以上解答,越簡單越好 謝謝 很急 拜託大家了

2006-11-27 05:10:08 · 1 個解答 · 發問者 ? 1

這是個用動態陣列輸入大小及內容的程式...
但我想對兩陣列作加法運算
雖然compile沒問題...但執行到最後答案就是不出來哩XD
就一直停止不動....麻煩大大幫我解惑一下T___T
#include
using namespace std;
int x=0,y=0;//全域變數
class matrix;
istream& operator>>( istream &is, matrix &m );
ostream& operator<<( ostream& os, const matrix m );
class matrix {
friend istream& operator>>( istream &is, matrix &m );
friend ostream& operator<<( ostream& os, const matrix m );
public:
matrix(){}
// this->~matrix();
matrix operator+(matrix &ml);
matrix operator=(matrix &a);
private: int **mat,y,x;
};
matrix matrix ::operator+(matrix & ml)//這樣應該沒錯吧QQ"
{ int i,j;
matrix ans;
ans.mat=new int * [y];
for(i=0;i {ans.mat[i]=new int [x];
for(j=0;j {ans.mat[i][j]=this->mat[i][j]+ml.mat[i][j];}
}
return ans;
}
istream& operator>>( istream& is, matrix &m )
{
int i,j;
m.mat=new int * [y];
for(i=0;i {
m.mat[i]=new int [x];
for(j=0;j {
cout<<"num-"< cin >> m.mat[i][j];
}
}
return is;
}
ostream& operator<<( ostream& os, const matrix m ) {
int i,j;
for(i=0;i {
for(j=0;j {
os< }
}
return os;
}
matrix matrix::operator=( matrix &m ) //跟ans作法依樣
{
int i,j;
matrix mr;
mr.mat=new int * [y];
for(i=0;i {
mr.mat[i]=new int [x];
for(j=0;j {
mr.mat[i][j] = m.mat[i][j];
}
}
return mr;
}
void main ()
{ cout << "How many rows and cols? ";
cin>>y>>x;
matrix matrix1,matrix2;
cin >> matrix1 ;
cin >> matrix2 ;
matrix matrix_sum;
matrix_sum=matrix1 + matrix2;
cout << matrix_sum;
}

可以的話講一下解構子要如何加上去
才不會出問題

2006-11-26 21:58:10 · 2 個解答 · 發問者 OOXX 2

改下面program改到一半就開始搞唔掂
程式碼:
http://www.hkedcity.net/sch_files/a/msc/msc-03cc5/public_html/HW_15_input.txt
佢要我o地找返晒所有errors出o黎同埋改正!

The sample output as follows:

Please enter a string:
Computer and information technolgy
Number of words = 4
Frequency of 'a' = 2
frequency of 'e' = 2
frequency of 'i' = 2
frequency of 'o' = 5
frequency of 'u' = 1

2006-11-26 18:46:10 · 1 個解答 · 發問者 John 2

public JMFPlayer(JFrame pf, String media) {
parentFrame = pf;
mediaName = media;
我試的 --> int d = (f, argv.length == 0 ? "file:///D:/MOVIE/11/11.mpg" : argv[0]);
不行
// cp = getContentPane();
cp = this;
cp.setLayout(new BorderLayout());
try {
theURL = new URL(getClass().getResource("."), mediaName);
thePlayer = Manager.createPlayer(theURL);
thePlayer.addControllerListener(this);
} catch (MalformedURLException e) {
System.err.println("JMF URL creation error: " + e);
} catch (Exception e) {
System.err.println("JMF Player creation error: " + e);
return;
}
System.out.println("theURL = " + theURL);

// Start the player: this will notify our ControllerListener.
thePlayer.start();// start playing
}
中間略過
public static void main(String[] argv) {
JFrame f = new JFrame("JMF Player Demo");
Container frameCP = f.getContentPane();
JMFPlayer p = new JMFPlayer
<<<(f, argv.length == 0 ? "file:///D:/MOVIE/11/11.mpg" : argv[0]); >>>
frameCP.add(BorderLayout.CENTER, p);
f.setSize(200, 200);
f.setVisible(true);
f.addWindowListener(new WindowCloser(f, true));

<<< ..........>>> 之間我想用一個d代替就好
但是我不知道該如何宣告
我試過
因為我想讓她隨時更動
int d = (f, argv.length == 0 ? "file:///D:/MOVIE/11/11.mpg" : argv[0]);
好像不行..
請問我要用什麼宣告

2006-11-26 17:57:11 · 2 個解答 · 發問者 Lin 1

不好意思我是C++程式的初學者
學校老師是用Microsoft Visual Studio.NET2003這套軟體
在Visual C++下建立"W32主控台專案"
我想回家弄 上網下載了VISUAL STUDIO 2005 TEAM SUIT 中文正式版
然後是在Visual C++下建立"W32主控台應用程式"
-------------------------------------------
// 123.cpp : 定義主控台應用程式的進入點。
//
#include "stdafx.h"
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout<<"123"< return 0;
}
----------------------------------------------------------------
可是執行的時候都出現
error C2871: 'std' : 此名稱的命名空間不存在
是我開錯專案嗎 ?
那要開哪個專案才能正常使用呢?
還是我抓的和學校的根本是不一樣的軟體?

2006-11-26 14:21:23 · 1 個解答 · 發問者 康哥 3

請問要如何把下列程式的矩陣相加改成矩陣相乘呢?
拜託高手來解答>"<

#include
#include
void main()
{
int i,j;
int x[3][3]={{2,4,6},{8,10,12},{14,16,18}};
int y[3][3]={{1,3,5},{7,9,11},{13,15,17}};
int z[3][3];
for(i=0;i<3;i++)
for(j=0;j<3;j++)
z[i][j]=x[i][j]+y[i][j];
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
cout< cout<<"\\n";
}
}

2006-11-26 14:09:13 · 2 個解答 · 發問者 誰說叫芬達就一定要喝汽水 1

題目是在字元陣列放入未按順序排列的26個英文字母,
然後字母依 a~z 順序從螢幕輸出。

下面是我打的程式 但是不知道錯在哪

#include
#include
#define n 80
#include
using namespace std;
void sort (char [][n],int);

int main()
{
char str[][n] = ("a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z");
sort(str,26);
for (int i=0;i<26;i++)
cout< }
void sort (char [][n],int count)
{
char temp[n]
for(int i=0;i for(int j=i+1;j if(strcmp(str[i],str[j])>0){
strcpy(temp,str[j]);
strcpy(str[j],str[i]);
strcpy(str[i],temp);
}
system("pause");
}

2006-11-26 13:33:02 · 2 個解答 · 發問者 2

如何做一個像下面這個網頁中的播放器而翻頁時不會間斷的播放器:http://hk.geocities.com/missyourall/miss.html

2006-11-26 13:22:48 · 2 個解答 · 發問者 麵包 1

寫一個程式以亂數產生1000筆資料,並且統計2,3,5,7倍數及其他類別的個總數。

2006-11-26 13:06:07 · 2 個解答 · 發問者 Joe 1

#include
#include
int main(void)
{
int sn;
scanf("%d",&sn);
if(sn%4==1)
tapc=random(2)+1;
}
我想要在這個情況下使的tapc產生一個1~3之間的亂數
但是我這樣打不行耶
可以請各位大大幫忙改一下嘛?

2006-11-26 12:50:26 · 2 個解答 · 發問者 鵰神 1

 請問 要怎麼把作好的閃圖或閃字傳上網頁

 而且 網址點進去之後 只有那個圖

 不是像放在相簿那種a

 麻煩大大教一下a ˇ

2006-11-26 08:24:15 · 1 個解答 · 發問者 ×蹦蹦跳跳〃姵× 2

這是我第一次踏進無名的世界
第一次建立屬於自己的網誌
請資深大大們教教我
要如何增加自己網誌人氣及自己設計網誌版面樣式啊!?
本人我實在不了解說
以下是我網誌地址~
http://www.wretch.cc/blog/ayumi771225

2006-11-26 08:19:11 · 6 個解答 · 發問者 鮮奶 1

1.  1+1/2+1/3+1/4+....1/50=?2.  1*1+2*2+3*3+4*4+...35*35=?3.  2*4*6*....10=?都要用for迴圈寫....感恩不盡...

2006-11-26 08:00:35 · 2 個解答 · 發問者 ? 6

"乜"字的倉頡碼和速成碼點打??

請回答我的問題!!

thx~

2006-11-26 05:56:53 · 10 個解答 · 發問者 任我行 5

Private Declare Function GetPixel Lib "gdi32" (ByVal hdc As Long, ByVal x As Long, ByVal y As Long) As Long

Private Sub Timer1_Timer()
If GetPixel(hdc, 823, 747) = RGB(214, 85, 33) Then
SendKeys "S"
End If
End Sub


我這樣做了 畫面也達到他的條件 可是就是不動作

2006-11-26 04:19:20 · 6 個解答 · 發問者 ? 1

最近想寫個小東西幫忙輔助計算...
發現寫不出
正弦
餘弦
正切
餘切
正割
餘割
(包含角度)
等這些計算

2006-11-26 04:01:41 · 1 個解答 · 發問者 ? 2

Suppose 我有個file proverbs.txt 入面有堆咁既野
1. Between the devil and the seep sea
To choose between two equally bad alternatives
in a serious dilema.

2. Where there's a will, there's a way
When a person really wants to do something,
he will find a way of doing it.
我點可以count佢有幾多個WORDS
仲有我點可以copy淨係第一句去一個新file
i.e, 新file 內容要係咁
1. Between the devil and the seep sea
2. Where there's a will, there's a way
不可用stack

2006-11-26 03:17:24 · 1 個解答 · 發問者 ? 1

請問C#要如何與MPI結合,使程式能平行處理?
附註環境設定及實例更佳

2006-11-25 20:24:17 · 1 個解答 · 發問者 william 5

如何在文字模式以Unicode輸出wchar_t 這到底是啥意思....問朋友都不告訴我
掯ˊˋ 我以前程式沒學好 所以看不太懂意思 可以大大麻煩講解依下嗎?

2006-11-25 19:37:37 · 1 個解答 · 發問者 Yuan 2

試問在insert update 與delete的寫法裡
有那些寫法最好不要這樣寫
或是有那些寫法會讓效能變得非常的差

2006-11-25 16:53:14 · 2 個解答 · 發問者 九五二七 3

比如說輸入1234 輸出就會為 壹仟兩佰參拾四
請問要怎麼寫呢?

2006-11-25 13:52:09 · 2 個解答 · 發問者 polk 1

之前程式設計課的上機考考了一題...使用者輸入三個數字
然後輸出這三個數,由小排到大
課本的作法:利用判斷式if
用if寫是一種方法,不過邏輯容易亂掉

如果用陣列的方式寫...要怎麼寫呢?

2006-11-25 12:28:26 · 1 個解答 · 發問者 浩浩~瘋狂程式設計師 3

哪裡有可愛的游標呢?請給我網址巴
如提,請給我網址,我要用在無名的

2006-11-25 12:05:47 · 4 個解答 · 發問者 郁庭 1

我要留言版ㄉ語法~
任何語法即可...(要標示做啥ㄉ)
大大們有嗎????
謝謝喔##

2006-11-25 09:05:17 · 4 個解答 · 發問者 1

想學程式語言.但都是一些文字解說.哪裡有實際示範或圖檔可看呢.麻煩大家了

2006-11-25 07:59:36 · 1 個解答 · 發問者 ? 2

我想請問我的無名還可以加些什麼東西?
我的無名: http://www.wretch.cc/guestbook/angel460360
我留言版的背景可以怎麼改?
請幫我套好語法~
相簿也可以怎麼改背景?
也幫我套語法!
謝謝!!

2006-11-25 07:36:22 · 4 個解答 · 發問者 3

請 給 我 特 殊 符 號 的 網 站
拜 託 ~

2006-11-25 06:08:56 · 10 個解答 · 發問者 Anonymous

這是連MSN的要怎麼連即時通的 主要只要可以傳即時訊息給我就好


2006-11-24 21:16:20 · 1 個解答 · 發問者 RedBean 1

fedest.com, questions and answers