當前位置:首頁 » 操作系統 » c表白源碼

c表白源碼

發布時間: 2023-06-09 14:59:00

① 求一個c語言表白程序

#include <stdio.h>

#include <math.h>

#include <stdlib.h>

#define I 20

#define R 340

#include <string.h>

int main()

{

char answer[10];

printf("遇到你 我才發現 曾經所有的條件 似乎都成了我等你的借口 ");

printf("我對你的感情已經決堤 所以 請允許我,從今往後映入你 明媚的眼 ");

printf("我 想和你 耳鬢廝磨,相濡以沫!");

printf("答應我吧! 輸入yes,你可以看到我的真心 ");

scanf("%s", answer);

float y, x, z, f;

for (y = 1.5f; y > -1.5f; y -= 0.1f)

{

for (x = -1.5f; x < 1.5f; x += 0.05f)

{

z = x * x + y * y - 1;

f = z * z*z - x * x*y*y*y;

putchar(f <= 0.0f ? "*********"[(int)(f*-8.0f)] : ' ');

}

putchar(' ');

}

long time;

for (;;)

{

system("color a");

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("color 4");

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");

}

getchar();

return 0;

}

運行效果:


(1)c表白源碼擴展閱讀:

printf函數使用注意事項

1、域寬

%d:按整型數據的實際長度輸出。

如果想輸出指定寬度可以指定域寬,%md--&gt;m域寬,列印出來以後,在控制台上,顯示m位;

如果我們要列印的數的位數如果超過我們設定m則原樣輸出;

如果我們要列印的數的位數如果小於我們設定的位數,則補空白,具體如下:

如果m為正數,則左對齊(左側補空白);

如果m為負數,則右對齊(右側補空白)。

2、轉義字元

如果想輸出字元"%",則應該在「格式控制」字元串中用連續兩個%表示。

如:printf("%f%%",1.0/3);輸出結果:0.333333%。

② 求C語言表白代碼並且告訴我怎麼用

//由*組成的520三個數字在控制台窗口從左向右循環移動
#include<stdio.h>
#include<time.h>

void update(char d[][9][12],int sp)
{
int i,j;

for(i=0;i<9;i++)
{
for(j=0;j<sp;j++)
putchar(' ');

for(j=0;j<12;j++)
if(1==d[0][i][j])
putchar('*');
else
putchar(' ');
for(j=0;j<12;j++)
if(1==d[1][i][j])
putchar('*');
else
putchar(' ');
for(j=0;j<12;j++)
if(1==d[2][i][j])
putchar('*');
else
putchar(' ');
putchar('\n');
}
}
int main()
{
char d[][9][12]=
{
0,0,1,1,1,1,1,1,1,1,0,0,
0,0,1,1,0,0,0,0,0,0,0,0,
0,0,1,1,0,0,0,0,0,0,0,0,
0,0,1,1,0,0,0,0,0,0,0,0,
0,0,1,1,1,1,1,1,1,1,0,0,
0,0,0,0,0,0,0,0,1,1,0,0,
0,0,0,0,0,0,0,0,1,1,0,0,
0,0,0,0,0,0,0,0,1,1,0,0,
0,0,1,1,1,1,1,1,1,1,0,0,

0,0,1,1,1,1,1,1,1,1,0,0,
0,0,0,0,0,0,0,0,1,1,0,0,
0,0,0,0,0,0,0,0,1,1,0,0,
0,0,0,0,0,0,0,0,1,1,0,0,
0,0,1,1,1,1,1,1,1,1,0,0,
0,0,1,1,0,0,0,0,0,0,0,0,
0,0,1,1,0,0,0,0,0,0,0,0,
0,0,1,1,0,0,0,0,0,0,0,0,
0,0,1,1,1,1,1,1,1,1,0,0,

0,0,1,1,1,1,1,1,1,1,0,0,
0,0,1,1,0,0,0,0,1,1,0,0,
0,0,1,1,0,0,0,0,1,1,0,0,
0,0,1,1,0,0,0,0,1,1,0,0,
0,0,1,1,0,0,0,0,1,1,0,0,
0,0,1,1,0,0,0,0,1,1,0,0,
0,0,1,1,0,0,0,0,1,1,0,0,
0,0,1,1,0,0,0,0,1,1,0,0,
0,0,1,1,1,1,1,1,1,1,0,0
};
const int Interval=1,Speed=5;
int i,j,sp=0;
time_t t1,t2;
update(d,sp);
time(&t1);
while(1)
{
time(&t2);
if(difftime(t2,t1)>=Interval)
{
system("cls");
update(d,sp+=Speed);
t1=t2;
if(44/Speed*Speed==sp)
sp=0;
}

}
}

③ 求C語言編寫的表白程序,要代碼

呃,你還不如用vbs,網上也有一堆教程和例子,很簡單,隨便看一下就知道怎麼寫了。

DimmyName,herName,myNameAns,herNameAns
myName="池早早"
herName="歐浩辰"
MsgBox(herName+",我喜歡你!我的腦和心,我全身上下每一個器官都在說著我喜歡你。")
do
herNameAns=InputBox("我喜歡誰?","某人的名字")
loopwhileherNameAns<>herName
do
myNameAns=InputBox("誰喜歡"+herName+"?","某人的名字")
loopwhilemyNameAns<>myName
do
myNameAns=InputBox("大聲點我聽不見!","你的名字")
loopwhilemyNameAns<>myName
MsgBox(herName+",這是我為你准備的葯,你趁熱吃吧!")

.........................保存為xxx.vbs文件就能運行了

④ 求用c語言幫我寫個程序,表白嗚 要求:輸入你最愛的人的名字,屏幕就會列印」xxx,我愛你」和一顆心

#include<stdio.h>
intmain()
{
charname[30];
inti;
floaty,x,a;
printf("輸入你最愛的老老埋人的名字:");
scanf("%s",&name);
printf("%s,我愛你 ",name);
for(y=1.5f;y>-1.5f;y-=0.1f){
for(x=-1.5f;x<1.5f;x+=0.05f)含攔{
侍螞a=x*x+y*y-1;
putchar(a*a*a-x*x*y*y*y<=0.0f?'*':'');
}
putchar(' ');
}
system("pause");
}

⑤ 程序員的表白代碼

程序員的表白代碼

第一條語言:Java代碼翻譯:直到死之前,每天愛你多一點代碼:while(lifeend){love++;}

第二條語言:C語言代碼翻譯:.代碼:#incldestdio.hintmain(){printf(HelloWorldn);retrn0;}//.

第三條語言:python代碼翻譯:山無陵,江水為竭,冬雷震震,夏雨雪,天地合,乃敢與君絕!代碼:if(mountain.arris==None):if(river.water==None):if(winter.thunder==True):if(summer.snow==True):if(sky.height==ground.height):i.withyou=Falseelse:i.withyou=True.

第四條語言:Erlang代碼代碼翻譯:深圳相遇,至死不渝代碼:-mole(you_and_me).-export([start/1]).-record(person,{name,address,status}).start(Name)-one_world(Name).one_world(Name)keep_to_love_you(Person).say_goodbye(Person)-io:format(~p:seeyounextworld!~n,[Person#person.name]).see_you_next_world(Name)-one_world(Name).

第五條語言:Java語言代碼翻譯:愛你到天荒地老代碼:while(!world.destroy){System.out.println(iloveyou);}

⑥ 讓你用c++代碼表白,要咋寫呢

核心:while(day+=1):loveyou +=1if (world==None or mylife==None):break每天多愛你一點,直到世界或者我生命的終結c++不會,用py寫的,學渣,錯了別噴

⑦ 求一個示愛的小程序 C語言

void a(int aa)

{for(int i=0;i<aa;i++)printf(" ");}

void b()

{printf ("*");}

char c(int cc)

{printf("%c",cc);return 0;}

int main()

{a(6);b();a(3);b();a(5);b();a(3);b();

printf (" ");

a(4);b();a(8);b();a(8);b();

printf (" ");

a(3);b();a(19);b();

printf (" ");

a(3);b();a(4);c(73);a(1);c(76);c(111);c(118);

c(101);a(1);c(89);c(111);c(117);a(5);b();

printf (" ");

a(4);b();a(17);b();

printf (" ");

a(6);b();a(13);b();

printf (" ");

a(8);b();a(9);b();

printf (" ");

a(10);b();a(5);b();

printf (" ");

a(13);b();

printf (" ");return 0;

}

效果如下:

熱點內容
access資料庫登陸 發布:2025-04-07 04:56:31 瀏覽:605
rubyjava 發布:2025-04-07 04:56:29 瀏覽:594
java建窗體 發布:2025-04-07 04:56:25 瀏覽:842
安卓界面怎麼開發 發布:2025-04-07 04:55:49 瀏覽:920
百寶箱密碼在哪裡面修改密碼 發布:2025-04-07 04:55:47 瀏覽:159
蘋果安卓怎麼傳視頻 發布:2025-04-07 04:42:10 瀏覽:487
96編譯器是做什麼的 發布:2025-04-07 04:33:45 瀏覽:875
cphp數組 發布:2025-04-07 04:32:36 瀏覽:138
centos下搭建dns伺服器 發布:2025-04-07 04:08:03 瀏覽:662
halcon標定演算法 發布:2025-04-07 04:01:29 瀏覽:342