⑴ vb中畫矩形的程序怎麼寫

不知道你想要什麼樣的畫矩形的程序。下面是直接用滑鼠在窗體上畫矩形的。你只要按下滑鼠左鍵在窗體上畫,松開滑鼠就會畫出一個矩形來。
Dim CX0 As Long, CY0 As Long
Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 1 Then
CX0 = X
CY0 = Y
End If
End Sub
Private Sub Form_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 1 Then
Me.Line (CX0, CY0)-(X, Y), , B
End If
End Sub

⑵ css 代碼 :div圓角矩形怎麼寫

朋友,我給你來個實例吧,希望點贊答案,謝謝。
CSS代碼:
div#nifty{margin:0;background:#9BD1FA}p
{padding:10px}div.rtop
{display:block;background:#fff}div.rtop
div
{display:block;height:1px;overflow:hidden;background:#9BD1FA}div.r1{margin:0
5px}div.r2{margin:0
3px}div.r3{margin:0
2px}div.rtop
div.r4
{margin:0
1px;height:2px}
html代碼:
div
+
css
圓角矩形
www.865171.cn

⑶ html 畫長方形代碼什麼樣

<! html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>無標題文檔</title>
<style type="text/css">
<!--

-->
</style>
</head>

<body>
<div style="border: 1px solid #666666; height:100px; width:200px;" >
<p>f4522</p>
<p></p>
<p>2</p>
<p></p>
</div>
</body>
</html>

java中用for語句實現用"*"組成矩形代碼

public class HelloWorld {
public static void main(String[] args) {

System.out.println("列印直角三角形");

// 外層循環控制行數
for (int i = 1; i<5;i++ ) {

// 內層循環控制每行的*號數
// 內層循環變數的最大值和外層循環變數的值相等
for (int j = 1;j<i;j++ ) {

System.out.print("*");
}

// 每列印完一行後進行換行
System.out.println();
}
}
}

⑸ 用c語言寫一個實心矩形的代碼

#include<stdio.h>
intmain()
{
inta,b,i,j;
scanf("%d%d",&a,&b);
for(i=0;i<a;i++)
{for(j=0;j<b;j++)
printf("*");
printf(" ");
}
return0;
}

⑹ 關於代碼DIV的,用代碼寫出個矩形跟文字平行。

<style type="text/css">
*{margin:0; padding:0;}
body{line-height:22px;}
.div_bg{ float:left; background-color:#060; height:22px;}
</style>
<div class="div_bg" style="width:10px;"></div>第一行<br />
<div class="div_bg" style="width:20px;"></div>第二行<br />
<div class="div_bg" style="width:70px;"></div>第三行<br />
看看符合你要求不?

⑺ matlab提取矩形圖案代碼

L = bwlabel(binary): %binary = 你貼出來的這個圖
rect = zeros(size(binary));
rect(L==3) = 1; %圖中矩形是第三塊區域。
rect = repmat(rect,[1,1,3]);
rect(rect==1) = I(rect==1); % I = RGB圖

⑻ DW里圓角矩形的代碼如何編寫

可以考慮這個例子,重點:border-radius: 10px

<divstyle="color:#fff;background:#f00;padding:5px;border-radius:10px">圓通</div>