導航:首頁 > 編程語言 > 生日快樂的編程代碼如何寫

生日快樂的編程代碼如何寫

發布時間:2022-05-18 14:08:27

Ⅰ 生日快樂用代碼怎麼打

你想要什麼樣子的生日快樂,如果只是單純的字(紅色的大字)
<!doctype html>
<html>
<head>
<meta name="renderer" content="webkit">
<meta charset="utf-8">
<title>茶泡泡</title>
</head>

<body>
<div style="font-size:50px; color:#F00">生日快樂!</div>
</body>
</html>

Ⅱ 生日快樂c語言

#include<stdio.h>#include<math.h>floatf(floatx,floaty,floatz){floata=x*x+9.0f/4.0f*y*y+z*z-1;returna*a*a-x*x*z*z*z-9.0f/80.0f*y*y*z*z*z;}floath(floatx,floatz){for(floaty=1.0f;y>=0.0f;y-=0.001f)if(f(x,y,z)<=0.0f)returny;return0.0f;}intmain(){for(floatz=1.5f;z>-1.5f;z-=0.05f){for(floatx=-1.5f;x<1.5f;x+=0.025f){floatv=f(x,0.0f,z);if(v<=0.0f){floaty0=h(x,z);floatny=0.01f;floatnx=h(x+ny,z)-y0;floatnz=h(x,z+ny)-y0;floatnd=1.0f/sqrtf(nx*nx+ny*ny+nz*nz);floatd=(nx+ny-nz)*nd*0.5f+0.5f;putchar(".:-=+*#%@"[(int)(d*5.0f)]);}elseputchar('');}putchar(' ');}}

Ⅲ 求一段vbs代碼,祝福生日

'═════代═══碼═══開═══始═════
do
name=inputbox("請輸入你的姓名:")
if name="" or name<>"張三" then
msgbox "你輸入的姓名不正確,請重新輸入"
else
exit do
end if
loop
msgbox name&"祝你生日快樂!",64,"溫馨提示"
'═════代═══碼═══結═══束═════

請將代碼中「張三」改為你需要的名字,注意不要丟掉了代碼中的英文引號。

Ⅳ 求賜教,用C++製作一個製作一個祝朋友生日快樂的程序!

#include <iostream>
#include <stdlib.h>
#include <conio.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <windows.h>
using namespace std;
void color(int a)//顏色函數
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),a);
}
int main(){
char a;
color(12);
cout << "Do you want to see your BIRTHDAY CARD( Input y or n )?" << endl;
color(15);
cin >> a;
color(12);
if ( a=='y' ){
cout << "Ok, you will see your birthday card soon!" << endl;
} else {
cout << "That's OK, but happy birthday to you!" << endl;
return 0;
}
Sleep(1000);
color(268);
cout << "HAPPY ";
color(270);
cout << "BRITHDAY ";
color(9);
cout << "TO ";
color(10);
cout << "YOU!" << endl;
color(0);
Sleep(500);
cout << " ";
color(236);
cout << "********";
color(0);
cout << " ";
color(236);
cout << "********" << endl;
Sleep(500);
color(0);
cout << " ";
color(236);
cout << "************";
color(0);
cout << " ";
color(236);
cout << "************" << endl;
Sleep(500);
cout << "****************************" << endl;
Sleep(500);
cout << "****************************" << endl;
Sleep(500);
cout << "****************************" << endl;
Sleep(500);
color(0);
cout << " ";
color(236);
cout << "************************" << endl;
Sleep(500);
color(0);
cout << " ";
color(236);
cout << "********************" << endl;
Sleep(500);
color(0);
cout << " ";
color(236);
cout << "****************" << endl;
Sleep(500);
color(0);
cout << " ";
color(236);
cout << "************" << endl;
Sleep(500);
color(0);
cout << " ";
color(236);
cout << "********" << endl;
Sleep(500);
color(0);
cout << " ";
color(236);
cout << "****" << endl;
Sleep(500);
char c[55] = { 'T' ,'h' ,'a' ,'n' ,'k', ' ' ,'y' ,'o' ,'u', ' ' ,'f' ,'o' ,'r', ' ' ,'l' ,'o' ,'o' ,'k' ,'i' ,'n' ,'g', ' ' ,'a' ,'f' ,'t' ,'e' ,'r', 's', ' ' ,'m' ,'e', ' ' ,'f' ,'o' ,'r', ' ' ,'e' ,'l' ,'e' ,'v' ,'e' ,'n', ' ' ,'y' ,'e' ,'a' ,'r' ,'s', ',', ' ' ,'m' ,'o' ,'m' ,'!', '0' };
for ( int i=0; i<=53; i++ ){
color( ( i+1 ) % 15 + 1 );
cout << c[i];
}
cout << endl;
Sleep(10000);
char d[12] = { 'I', ' ', 'l', 'o', 'v', 'e', ' ', 'y', 'o', 'u', '!', '0' };
int count = 0;
for ( int j=1; j<=1000; j++ ){
count++;
for ( int i=0; i<=10; i++ ){
color(i+1);
cout << d[i];
}
cout << " ";
}
cout << endl;
cout << "What present do you want(Input the number of the present)?" << endl;
char e;
cout << "A clothes(A); ???(B); Lipstick(C)" << endl;
cin >> e;
srand((unsigned)time(NULL));
for ( int i=1; i<=20; i++ ){
system( "cls" );
int s = 1;
int tmp = rand()%4;
switch( tmp ){
case 0:{
tmp++;
break;
}
case 1:{
color(rand()%15+1);
s++;
cout << " # " << endl;
color(rand()%15+1);
s++;
cout << " # # " << endl;
color(rand()%15+1);
s++;
cout << " # # " << endl;
color(rand()%15+1);
s++;
cout << " ####### " << endl;
color(rand()%15+1);
s++;
cout << " # # " << endl;
color(rand()%15+1);
s++;
cout << " # # " << endl;
color(rand()%15+1);
s++;
cout << " # # " << endl;
break;
}
case 2:{
color(rand()%15+1);
s++;
cout << " ######### " << endl;
color(rand()%15+1);
s++;
cout << " # # " << endl;
color(rand()%15+1);
s++;
cout << " # # " << endl;
color(rand()%15+1);
s++;
cout << " ######### " << endl;
color(rand()%15+1);
s++;
cout << " # # " << endl;
color(rand()%15+1);
s++;
cout << " # # " << endl;
color(rand()%15+1);
s++;
cout << " ######### " << endl;
break;
}
case 3:{
color(rand()%15+1);
s++;
cout << " ######### " << endl;
color(rand()%15+1);
s++;
cout << " # " << endl;
color(rand()%15+1);
s++;
cout << " # " << endl;
color(rand()%15+1);
s++;
cout << " # " << endl;
color(rand()%15+1);
s++;
cout << " # " << endl;
color(rand()%15+1);
s++;
cout << " # " << endl;
color(rand()%15+1);
s++;
cout << " ######## " << endl;
break;
}
}
Sleep(i*50);
}
system ( "cls" );
switch( e ){
case 'A':{
color(rand()%15+1);
cout << " # " << endl;
color(rand()%15+1);
cout << " # # " << endl;
color(rand()%15+1);
cout << " # # " << endl;
color(rand()%15+1);
cout << " ####### " << endl;
color(rand()%15+1);
cout << " # # " << endl;
color(rand()%15+1);
cout << " # # " << endl;
color(rand()%15+1);
cout << " # # " << endl;
break;
}
case 'B':{
color(rand()%15+1);
cout << " ######### " << endl;
color(rand()%15+1);
cout << " # # " << endl;
color(rand()%15+1);
cout << " # # " << endl;
color(rand()%15+1);
cout << " ######### " << endl;
color(rand()%15+1);
cout << " # # " << endl;
color(rand()%15+1);
cout << " # # " << endl;
color(rand()%15+1);
cout << " ######### " << endl;
break;
}
case 'c':{
color(rand()%15+1);
cout << " ######### " << endl;
color(rand()%15+1);
cout << " # " << endl;
color(rand()%15+1);
cout << " # " << endl;
color(rand()%15+1);
cout << " # " << endl;
color(rand()%15+1);
cout << " # " << endl;
color(rand()%15+1);
cout << " # " << endl;
color(rand()%15+1);
cout << " ######## " << endl;
break;
}
}
color(rand()%15+1);
cout << "You are very LUKY!" << endl;
cout << "Please turn your head!" << endl;
cout << "Tab return to continue...";
cout << endl;
color(0);
system( "pause" );
color(rand()%1023+1);
cout << "Are you happy?!" << endl;
color(rand()%1023+1);
cout << "I think you are!!!" << endl;
color(rand()%1023+1);
cout << "...-..---..-.-.--!";
Sleep ( 3000 );
cout << endl;
color(15);
cout << "######" << endl;
cout << " #" << endl;
cout << "######" << endl;
cout << " #" << endl;
cout << "######" << endl;
Sleep( 2000 );
system( "cls" );
cout << " @@@@ " << endl;
cout << "@ @" << endl;
cout << " @ " << endl;
cout << " @ " << endl;
cout << "@@@@@@" << endl;
Sleep ( 2000 );
system( "cls" );
cout << " !! " << endl;
cout << " !!! " << endl;
cout << " !! " << endl;
cout << " !! " << endl;
cout << "!!!!!!" << endl;
Sleep ( 2000 );
system( "cls" );
color( rand()%1023+1 );
cout << " ###### # # ###### # " << endl;
cout << " # # # # # # " << endl;
cout << " # # # # # # " << endl;
cout << " ###### # ###### # " << endl;
cout << " # # # # # " << endl;
cout << " # # # # " << endl;
cout << " ###### # ###### # " << endl;
color(15);
return 0;
}
僅供參考!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Ⅳ 幫我提供一個『祝你生日快樂』的html代碼啊

前幾天一個朋友找到我,他說他女朋友馬上過生日,於是想問問我能不能寫一個生日祝福代碼。好兄弟的請求當然不能拒絕,直接安排!!

於是我用html寫了一個簡單的頁面:點開後會顯示來到這個世界多長時間和祝福話語,下滑後是自轉相冊(有背景音樂)。

原文鏈接:

html生日快樂代碼

核心代碼(不是完整代碼):

#head
{
width:100%;
height:100%;
position: absolute;
-webkit-transform-style: preserve-3d;
-webkit-animation:donghua 15s linear 0s infinite;
-moz-transform-style: preserve-3d;
-moz-animation:donghua 15s linear 0s infinite;
-ms-transform-style: preserve-3d;
-ms-animation:donghua 25s linear 0s infinite;
}
#head div
{
position: absolute;
top:0;
left:0;
width:300px;
height:400px;
border:1px solid #000
text-align: center;
line-height:100px;
}
#head div:nth-child(1)
{
-webkit-transform:rotateY(0deg) translateZ(400px);
-moz-transform:rotateY(0deg) translateZ(400px);
-ms-transform:rotateY(0deg) translateZ(400px);
background:url(images/01.png);
background-size:cover;
}
Heart.prototype.draw = function(){
this.size -= this.speedSize;
this.x += this.speedX;
this.y += this.speedY;
ctx.save();
ctx.translate(-1000,this.y);
ctx.scale(this.size, this.size);
ctx.beginPath();
for (var i = 0; i < precision; i++) {
var vector = this.vertices[i];
ctx.lineTo(vector.x, vector.y);
}
ctx.globalAlpha = this.size;
ctx.shadowBlur = Math.round((3 - this.size) * 10);
ctx.shadowColor = "hsla(0, 100%, 60%,0.5)";
ctx.shadowOffsetX = this.x + 1000;
ctx.globalCompositeOperation = "screen"
ctx.closePath();
ctx.fill()
ctx.restore();
};


function render(a){
requestAnimationFrame(render);

hearts.push(new Heart())
ctx.clearRect(0,0,ww,wh);
for (var i = 0; i < hearts.length; i++) {
hearts[i].draw();
if(hearts[i].size <= 0){
hearts.splice(i,1);
i--;
}
}
}


onResize();
window.addEventListener("mousemove", onMove);
window.addEventListener("touchmove", onMove);
window.addEventListener("resize", onResize);
requestAnimationFrame(render);

window.οnlοad=function starttime(){
time(h1,'2000,1,1'); // 出生時間
ptimer = setTimeout(starttime,1000); // 添加計時器
}

function time(obj,futimg){
var nowtime = new Date().getTime(); // 現在時間轉換為時間戳
var futruetime = new Date(futimg).getTime(); // 未來時間轉換為時間戳
var msec = nowtime-futruetime; // 毫秒 未來時間-現在時間
var time = (msec/1000); // 毫秒/1000
var day = parseInt(time/86400); // 天 24*60*60*1000
var hour = parseInt(time/3600)-24*day; // 小時 60*60 總小時數-過去的小時數=現在的小時數
var minute = parseInt(time%3600/60); // 分 -(day*24) 以60秒為一整份 取余 剩下秒數 秒數/60 就是分鍾數
var second = parseInt(time%60); // 以60秒為一整份 取余 剩下秒數
obj.innerHTML="陳陳<br>你已經來到這個世界:<br>"+day+"天"+hour+"小時"+minute+"分"+second+"秒"+"了<br><span>今日是你的生日,願所有的快樂、所有的幸福、所有的溫馨、所有的好運圍繞在你身邊。生日快樂!</span><p>下<br>滑<br>有<br>驚<br>喜</p>"

return true;
}32333435363738394

效果如下:

完整項目地址:html生日快樂代碼

Ⅵ 哪位仁兄可以用C語言幫我寫一個生日快樂的小程序 就是已輸入生日 最後可以出現生日蛋糕的圖像

#include <iostream>
#include <cmath>
#include <cstdio>
using namespace std;
const int inf=0xfffffff ;
int preminv[21] ;
int ri[21],hi[21] ;
int total,floornum ;
int ans ;
int dfs (int n,int v,int s,int maxr,int maxh)
{
int res ;
int i,tmpr,tmph,tmpsum ;
if (n>floornum){
if (v==total && s+ri[1]*ri[1]<ans){
ans = s+ri[1]*ri[1] ;
return 1 ;
}
}
for (ri[n]=maxr-1 ; ri[n]>=floornum-n+1 ; ri[n]--){
res = 2.0*(total-v)/ri[n] + ri[1]*ri[1] ;
if (res + s >= ans) continue ;
for (hi[n]=maxh-1 ; hi[n]>=floornum-n+1 ; hi[n]--){
if (v+ri[n]*ri[n]*hi[n]+preminv[floornum-n]>total) continue ;
tmpr = ri[n] ,tmph = hi[n],tmpsum = 0 ;
for (i=n ; i<=floornum ; i++){
tmpsum += tmpr*tmpr*tmph ;
tmpr-- , tmph-- ;
}
if (v+tmpsum<total) continue ;
dfs(n+1,v+ri[n]*ri[n]*hi[n],s+2*ri[n]*hi[n],ri[n],hi[n]) ;
}
}
return 1 ;
}
int main()
{
int tmpv,tmpr,tmph ;
int i ;
tmpv=0 ;
for (i=1 ; i<21 ; i++){
tmpv += i*i*i ;
preminv[i] = tmpv ;
}
while (scanf("%d%d",&total,&floornum)!=EOF){
ans = inf ;
tmpv = total - preminv[floornum-1] ;
if (tmpv>0){
tmpr = sqrt (1.0*tmpv/floornum) + 1 ;
tmph = 1.0*tmpv/(floornum*floornum) + 1 ;
dfs(1,0,0,tmpr,tmph) ;
}
if (ans==inf){
ans = 0 ;
}
printf("%d\n",ans) ;
}
return 0;
}

Ⅶ 關於生日的c++程序源代碼

#include <stdio.h>

int main()
{
printf("XXX 生日快樂!\n");
return 0;
}

請使用tc或ANSI C兼容編譯器編譯,並請在dos提示符下運行此程序,謝謝合作!

Ⅷ 跪求一個C語言程序輸出「生日快樂」(TC)

#include<stdio.h>

#include<math.h>

#include<string.h>

#include<stdlib.h>

#include<windows.h>

chars[8];

voidshow1(char*a)

{

system("cls");

printf("☆☆☆★☆☆☆★☆☆☆★ ");

printf("★☆ ");

printf("☆%s☆ ",a);

printf("☆生日快樂☆ ");

printf("☆★ ");

printf("★☆☆☆★☆☆☆★☆☆☆ ");

Sleep(200);

}

voidshow2(char*a)

{

system("cls");

printf("★☆☆☆★☆☆☆★☆☆☆ ");

printf("☆★ ");

printf("☆%s☆ ",a);

printf("☆生日快樂☆ ");

printf("★☆ ");

printf("☆☆☆★☆☆☆★☆☆☆★ ");

Sleep(200);

}

voidshow3(char*a)

{

system("cls");

printf("☆★☆☆☆★☆☆☆★☆☆ ");

printf("☆☆ ");

printf("☆%s★ ",a);

printf("★生日快樂☆ ");

printf("☆☆ ");

printf("☆☆★☆☆☆★☆☆☆★☆ ");

Sleep(200);

}

voidshow4(char*a)

{

system("cls");

printf("☆☆★☆☆☆★☆☆☆★☆ ");

printf("☆☆ ");

printf("★%s☆ ",a);

printf("☆生日快樂★ ");

printf("☆☆ ");

printf("☆★☆☆☆★☆☆☆★☆☆ ");

Sleep(200);

}

voidtransit(char*a,intn)//將名字的格式轉成4個字。便於排版

{

inti,t;

memset(s,'',sizeof(s));

switch(n)

{

case2:t=3;break;

case4:t=2;break;

case6:t=1;break;

}

for(i=0;i<n;i++)

{

s[t+i]=a[i];

}

}

intmain()

{

intt;

charname[10];

printf("請輸入生日者得姓名(漢字,不要超過3個字): ");

gets(name);

t=strlen(name);

transit(name,t);

while(1)

{

show1(s);

show2(s);

show3(s);

show4(s);

}

return0;

}

Ⅸ 幫我提供一個『祝你生日快樂』的html代碼

你可以找一些網頁特效軟體,上面的功能很豐富
比如網頁特效夢工廠什麼的

<Html>
<Head>
<title>跟隨滑鼠的滾動文字</title>
</Head>
<Body bgColor="#ffffff">
<!--將以下代碼加入HTML的<Body></Body>之間-->

<script language="JavaScript1.2">
var scroller_msg='祝你生日快樂'
var dismissafter=0

var initialvisible=0
if (document.all)
document.write('<marquee id="curscroll" style="position:absolute;width:150px;border:1px solid #FF8000;font-size:14pt;font-family:MS Sans Serif;color:#000000;background-color:#0000FF;visibility:hidden">'+scroller_msg+'</marquee>')

function followcursor(){
//move cursor function for IE

if (initialvisible==0){
curscroll.style.visibility="visible"
initialvisible=1
}

curscroll.style.left=document.body.scrollLeft+event.clientX+10
curscroll.style.top=document.body.scrollTop+event.clientY+10
}

function dismissmessage(){
curscroll.style.visibility="hidden"
}

if (document.all){
document.onmousemove=followcursor
document.ondblclick=dismissmessage
if (dismissafter!=0)
setTimeout("dismissmessage()",dismissafter*1000)
}

//-->

</script>
</Body>
</Html>

在軟體上看的,可以隨著滑鼠滾動

祝你兄弟生日快樂!

又及: 這樣的禮物是不是寒磣了點?

Ⅹ 有一個聖誕快樂的程序據說是用C語言寫的,我想把它改成生日快樂的,跪求原代碼~謝謝各位

#include"stdio.h"

#include <string.h>

intmain(void){

chara[]="Iwishyouahappybirthday!Iwishyouahappybirthday!",m[4],i;

printf("\n\n\n");

printf("%*.*s\n",58,21,"_*=__=*_");

printf("%*.*s\n",61,25,"Wishyourbirthday!");

printf("%*.*s\n",63,29,"Iwishyouahappybirthday!");

printf("%*.*s\n",65,33,a);

printf("%*.*s\n",66,35,a);

printf("%*.*s\n",66,35,a);

printf("%*.*s\n",65,33,a);

printf("%*.*s\n",64,31,a);

printf("%*.*s\n",63,29,a);

printf("%*.*s\n",61,25,a);

printf("%*.*s\n",59,21,a);

printf("%*.*s\n",57,17,a);

printf("%*.*s\n",55,13,a);

printf("%*.*s\n",53,9,a);

printf("%*.*s\n",51,5,a);

printf("%*.*s\n",50,3,a);

printf("%*.*s\n",49,1,a);

return0;

(10)生日快樂的編程代碼如何寫擴展閱讀

或者:

#include <stdio.h>

#include <math.h>

#include <stdlib.h>

#defineI20

#defineR340

intmain()

system("modeconcols=80lines=60");

system("title向你致以最誠摯的祝福!");

chardata[200][60]={{"祝你生日快樂!祝你生日快樂!"},{"\nHappybirthdaytoyou!\n"},{"Happybirthdaymydearfriend!\n"},

{"在你面前的台里本,總有一天是很獨特!\n"},{"雖然你和我,沒辦法選,來到世界的某刻。\n"},{"天氣寒冷,又或炎熱,又或者什麼血型和星座!\n"},

{"每年這刻,我對自己說,有生的日子要更快樂!\n"},{"天氣寒冷,又或炎熱,又或者什麼血型和星座!\n"},{"每年這刻,我對自己說,有生的日子要更快樂!\n"},

{"爸爸媽媽辛苦了!謝謝你們為我付出太多!\n"},{"生日祝福,吹滅蠟燭,我要我自己不許哭。\n"},{"長大了一歲變得靠譜,繼續走自己的旅程!\n"},

{"又到這一個時刻,幸福的花火,手機祝福收到很多很多。\n"},{"看到最後一條來自你,寫著讓我感動的話語。\n"},{"親愛的朋友要經常聯絡,我們一起來唱這首歌!\n"},

{"祝你生日快樂額!我們一起快樂!\n"}

};

intsign=0;

inti,j,e;

inta;

longtime;

for(i=1,a=I;i<I/2;i++,a--)

for(j=(int) ( I-sqrt(I*I-(a-i)*(a-i)) );j>0;j--)

printf("");

for(e=1;e<=2*sqrt(I*I-(a-i)*(a-i));e++)

printf("\3");

for(j=(int)

( 2*( I-sqrt(I*I-(a-i)*(a-i)) ) );j>0;j--)

printf("");

for(e=1;e<=2*sqrt(I*I-(a-i)*(a-i));e++)

printf("\3");

printf("\n");

for(i=1;i<80;i++)

if(i==25)

printf("======祝,生日快樂。======");

i+=30;

printf("\3");

printf("\n");

for(i=1;i<=R/2;i++)

if(i%2||i%3)

continue;

for(j=(int) ( R-sqrt(R*R-i*i) );j>0;j--)

printf("");

for(e=1;e<=2*( sqrt(R*R-i*i) - (R-2*I) );e++)

printf("\3");

printf("\n");

for(;;)

system("colora");

for(time=0;time<99999999;time++); system("color b");

for(time=0;time<99999999;time++); system("color c");

for(time=0;time<99999999;time++); system("color d");

for(time=0;time<99999999;time++); system("color e");

for(time=0;time<99999999;time++); system("color f");

for(time=0;time<99999999;time++);

system("color 0"); for(time=0;time<99999999;time++);

system("color 1"); for(time=0;time<99999999;time++);

system("color 2"); for(time=0;time<99999999;time++);

system("color 3"); for(time=0;time<99999999;time++);

system("color4");

for(time=0;time<99999999;time++); system("color 5");

for(time=0;time<99999999;time++); system("color 6");

for(time=0;time<99999999;time++); system("color 7");

for(time=0;time<99999999;time++); system("color 8");

for(time=0;time<99999999;time++); system("color 9");

for(time=0;time<99999999;time++); system("color ab");

for(time=0;time<99999999;time++); system("color ac");

for(time=0;time<99999999;time++); system("color ad");

for(time=0;time<99999999;time++); system("color ae");

for(time=0;time<99999999;time++); system("color af");

for(time=0;time<99999999;time++);

printf("%s",data[sign]);

sign++;

return0;

閱讀全文

與生日快樂的編程代碼如何寫相關的資料

熱點內容
24bit高頻精品解壓音樂 瀏覽:181
api程序員遇到更新 瀏覽:298
程序員程序運行搞笑圖 瀏覽:772
秦思怎麼下載app 瀏覽:691
發抖音怎麼發自己的APP網站 瀏覽:362
androidinbitmap 瀏覽:772
lzma源碼使用 瀏覽:748
ibm伺服器湖南經銷商雲伺服器 瀏覽:991
正規模板建站配雲伺服器商家 瀏覽:873
安卓清楚緩存命令 瀏覽:378
汽車壓縮機電磁離合器損壞怎麼修 瀏覽:507
怎麼提取安卓軟體 瀏覽:595
單片機和主機高速傳文件 瀏覽:478
男生直發加密需要剃光頭嗎 瀏覽:825
qtdesignerlinux 瀏覽:431
命令的幾要素 瀏覽:932
代理伺服器地址怎麼知道 瀏覽:172
漢語命令形 瀏覽:193
ACG官網下載的游戲怎麼解壓 瀏覽:963
stata交叉項命令 瀏覽:470