既然是表白,就要大聲說出來,不過現(xiàn)在的文化潮流已經(jīng)不是那句——安紅,我想你!而是要浪漫,什么是浪漫?這個時候就沒幾個人說得清楚了,總之就是表白要讓女生看不出來,又能看得出來,處于兩者之間的那種微妙境界。
因此就有了高級表白暗語、絕對看不出來的表白、表白密碼……等一系列迷之操作,在這個舔狗都會說土味情話的時代,你卻只會對女生表白說——做俺對象吧……
你覺得自己的表白有創(chuàng)意嗎?因此表白就是要不斷創(chuàng)新,弄一些花樣出來,比如試試表白代碼的說。
C++表白代碼
關(guān)鍵在于使用SetConsoleTextAttribute(out,k)函數(shù)設(shè)置顏色
#include<iostream>
#include<windows.h>
#include<stdlib.h>
using namespace std;
const int longtime=400;
const int shorttime=40;
HANDLE out=GetStdHandle(STD_OUTPUT_HANDLE);
void printwrite()
{
int k;
for(k=1;k<8;k++)
{
SetConsoleTextAttribute(out,k+1);//設(shè)置顏色
cout<<"親愛的"<<endl<<
"鵲橋彎彎情誼濃,牛郎織女見面歡。"<<endl<<
"星河璀璨空中閃,天上人間共纏綿。"<<endl<<
"手牽手兒心相連,知心的話說不完。"<<endl<<
"幸福生活繞身邊,愛情滾滾似江河,滔滔不絕心中現(xiàn)。"<<endl<<
"只愿此生永相伴,生生死死手相牽。愿你七夕快樂無限!"<<endl;
system("cls");//清屏
Sleep(longtime);
}
}
void printlove()
{
int k=0,i,j;
char piercing_arrow[][34]={//一行33個字符
" ☆☆ ☆☆ ☆☆ ☆☆ ",
" ★★ ★ ★★ ",
" ☆☆ 快樂每一天 ☆☆ ",
" ★★ ★★ ",
">>>---------I LOVE YOU --------->",
" ★★ ★★ ",
" ☆☆ ☆☆ ",
" ★★ ★★ ",
" ☆☆ "
};
SetConsoleTextAttribute(out,10);//設(shè)置顏色
for(i=0;i<9;i++)
for(j=0;j<34;j++)
{cout<<piercing_arrow[i][j];
if(j==33)
cout<<endl;
Sleep(shorttime);
}
system("cls");//清屏
while(k<7){
SetConsoleTextAttribute(out,k+7);//設(shè)置顏色
for(i=0;i<9;i++)
for(j=0;j<34;j++)
{cout<<piercing_arrow[i][j];
if(j==33)
cout<<endl;}
k++;
system("cls");
Sleep(longtime);
}
}
int main()
{
printwrite();
printlove();
return 0;
}
Java表白代碼
public class PrintHeart {
public static void main(String[] args){
System.out.println(printHeart("*"));
}
private static String printHeart(String input) {
int[] array = {0, 1, 0, 0, 0, 1, 0,
1, 0, 1, 0, 1, 0, 1,
1, 0, 0, 1, 0, 0, 1,
1, 4, 5, 2, 3, 4, 1,
0, 1, 0, 0, 0, 1, 0,
0, 0, 1, 0, 1, 0, 0,
0, 0, 0, 1, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0};
StringBuffer pi = new StringBuffer();
for (int i = 0; i < array.length; i++) {
if (i % 7 == 0)
pi.append("
");
if (array[i] == 0)
pi.append(" ");
else if (array[i] == 4)
pi.append(" ");
else if (array[i] == 5)
pi.append("???");
else if(array[i] == 2)
pi.append(" ??");
else if(array[i] == 3)
pi.append(" ??");
else
pi.append(" " + input);
}
return pi.toString();
}
}