跪求大神有此种子跪求

跪求大神_百度知道
请问还有初中女生的av吗?
我有更好的答案
这女优我以前也找过只知道叫:サクラ(Sakura)但这个日文翻译过来是樱花的意思,强大的度娘也找不到更多相关资料你这张图片出自:千人斩スーパーモデル级素人
既然是千人~
口味。。。。好重
会有装成初中的
为您推荐:
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁跪求大神帮忙_java吧_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0成为超级会员,使用一键签到本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:282,646贴子:
跪求大神帮忙收藏
有段源代码是用java实现绘图板的,运行不出来谁能帮我改一下。谢谢了import java.awt.*;import java.awt.geom.*;import java.awt.event.*;import javax.swing.*;
import java.io.*;import java.util.*; public class MiniDrawPad extends JFrame{ private ObjectInputS
private ObjectOutputS//定义输入输出流,用来调用和保存图形文件
private JButton choices[];
//按钮数组,存放以下名称的功能按钮
private String names[]=
"Save", //基本操作按钮,包括“新建”,“打开”,“保存”
/*绘图单元按钮*/
//铅笔拖动随意绘图
//绘制直线
//绘制空心矩形
//绘制以指定颜色填充的实心矩形
//绘制空心椭圆
//绘制以指定颜色填充的实心椭圆
//绘制圆形
"fCircle",
//绘制以指定颜色填充的实心圆形
"RoundRect",
//绘制空心圆角矩形
//绘制以指定颜色填充的实心圆角矩形
//选择颜色按钮,可用来选择需要的颜色
// 选择线条粗细的按钮
//输入文字按钮
private String styleNames[]={
"宋体","隶书","华文彩云","仿宋_GB2312","华文行楷",
"方正舒体","Times New Roman","Serif","Monospaced",
"SonsSerif","Garamond"
//可供选择的字体项
private Icon items[];
private String tipText[]=
//鼠标移动到相应按钮上面停留时给出的提示说明条
"新建画图",
"实心矩形",
"实心椭圆",
"圆角矩形",
"实心圆角矩形",
"选择颜色",
"是否加粗",
"输入文字"
JToolBar buttonP
//定义按钮面板
private JLabel statusB
//显示鼠标状态的提示条
private DrawPanel drawingA
//画图区域
private int width=800,height=550;
//定义画图区域初始化大小
drawings[] itemList =new drawings[5000]; //用来存放基本图形的数组
private int currentChoice =3;
//默认画图状态为铅笔
int index=0;
//当前已经绘制的图形数目
private Color color =Color.
//当前画笔颜色
int R,G,B;
int f1,f2;
//用来存放当前字体风格
String style1;
//用来存放当前字体
private float stroke =1.0f;
//设置画笔粗细,默认值为1.of
JCheckBox bold,
//定义字体风格选择框
public MiniDrawPad()
//构造方法
super("简易画图板");
JMenuBar bar=new JMenuBar();
//定义菜单条
fileMenu =new JMenu("文件");
fileMenu.setMnemonic('F');
//创建文件菜单条
JMenuItem newItem=new JMenuItem("新建");
newItem.setMnemonic('N');
newItem.addActionListener(
new ActionListener()
public void actionPerformed(ActionEvent e)
newFile();
//如果被触发,则调用新建文件函数段
fileMenu.add(newItem);
//保存文件菜单项
JMenuItem saveItem=new JMenuItem("保存");
saveItem.setMnemonic('S');
saveItem.addActionListener(
new ActionListener()
public void actionPerformed(ActionEvent e)
saveFile();
//如果被触发,则调用保存文件函数段
fileMenu.add(saveItem);
//打开文件菜单项
JMenuItem loadItem=new JMenuItem("打开");
saveItem.setMnemonic('L');
saveItem.addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent e)
loadFile();
//如果被触发,则调用打开文件函数段
fileMenu.add(loadItem);
fileMenu.addSeparator();
//退出菜单项
JMenuItem exitItem=new JMenuItem("退出");
saveItem.setMnemonic('X');
saveItem.addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent e)
System.exit(0);
//如果被触发,则退出画图板程序
fileMenu.add(exitItem);
bar.add(fileMenu);
//设置颜色菜单条
JMenu colorMenu =new JMenu("颜色");
colorMenu.setMnemonic('C');
//选择颜色菜单项
JMenuItem colorItem=new JMenuItem("选择颜色");
saveItem.setMnemonic('O');
saveItem.addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent e)
chooseColor();
//如果被触发,则调用选择颜色函数段
colorMenu.add(colorItem);
bar.add(colorMenu); //设置线条粗细菜单条
JMenu strokeMenu =new JMenu("线条粗细");
strokeMenu.setMnemonic('S'); //设置线条粗细菜单项
JMenuItem strokeItem=new JMenuItem("选择粗细");
saveItem.setMnemonic('K');
saveItem.addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent e)
setStroke();
//如果被触发,则调用线条函数段
strokeMenu.add(strokeItem);
bar.add(strokeMenu); //
设置提示菜单条
JMenu helpMenu =new JMenu("帮助");
strokeMenu.setMnemonic('H'); //设置线条粗细菜单项
JMenuItem aboutItem=new JMenuItem("关于");
saveItem.setMnemonic('A');
saveItem.addActionListener(
new ActionListener()
public void actionPerformed(ActionEvent e)
JOptionPane.showMessageDialog(null,
"This is a mini drawing pad!",
"画图板程序说明",
RMATION_MESSAGE);
helpMenu.add(aboutItem);
bar.add(helpMenu);
items=new ImageIcon[names.length]; //创建各种基本图形的按钮
drawingArea=new DrawPanel();
choices=new JButton[names.length];
buttonPanel=new JToolBar(JToolBar.VERTICAL);
buttonPanel=new JToolBar(JToolBar.HORIZONTAL);
ButtonHandler handler =new ButtonHandler();
ButtonHandler1 handler1=new ButtonHandler1();
//导入工具图标
for (int i=0;i&choices.i++)
items[i]=new ImageIcon(names[i]+".jpg");
//导入图片
choices[i] =new JButton("",items[i]);
choices[i].setToolTipText(tipText[i]);
buttonPanel.add(choices[i]);
} //将动作侦听器加入按钮里面
for(int i=3;i&choices.i++)
choices[i].addActionListener(handler);
choices[0].addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent e)
newFile();
choices[1].addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent e)
loadFile();
choices[2].addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent e)
saveFile();
choices[choices.length-3].addActionListener(handler1);
choices[choices.length-2].addActionListener(handler1);
choices[choices.length-1].addActionListener(handler1);
//字体风格选择
styles =new JComboBox(styleNames);
styles.setMaximumRowCount(8);
styles.addItemListener(
new ItemListener(){
public void itemStateChanged(ItemEvent e)
style1=styleNames[styles.getSelectedIndex()];
); //字体选择
bold =new JCheckBox("加粗");
italic=new JCheckBox("倾斜");
checkBoxHandler cHandler =new checkBoxHandler();
bold.addItemListener(cHandler);
italic.addItemListener(cHandler);
JPanel wordPanel=new JPanel();
buttonPanel.add(bold);
buttonPanel.add(italic);
buttonPanel.add(styles);
styles.setMinimumSize(new Dimension(50,20));
styles.setMaximumSize(new Dimension(100,20));
Container c=getContentPane();
super.setJMenuBar(bar);
c.add(buttonPanel,BorderLayout.NORTH);
c.add(drawingArea,BorderLayout.CENTER);
statusBar=new JLabel();
c.add(statusBar,BorderLayout.SOUTH);
statusBar.setText("欢迎!!!
createNewItem();
setSize(width,height);
//按钮侦听器ButtonHandler类,侦听基本按钮的操作
public class ButtonHandler implements ActionListener
public void actionPerformed(ActionEvent e)
for(int j=3;j&choices.length-3;j++)
if(e.getSource()==choices[j])
currentChoice=j;
createNewItem();
repaint();
//按钮侦听器ButtonHandler1类,用来侦听颜色选择,画笔粗细设置,文字输入按钮的操作
public class ButtonHandler1 implements ActionListener
public void actionPerformed(ActionEvent e)
if(e.getSource()==choices[choices.length-3])
chooseColor();}
if(e.getSource()==choices[choices.length-2])
setStroke();}
if(e.getSource()==choices[choices.length-1])
JOptionPane.showMessageDialog(null,"请先点击画图板选择要输入文字的位置以及颜色、字体、是否加粗、倾斜",
"提示",RMATION_MESSAGE);
currentChoice=14;
createNewItem();
repaint();
//鼠标事件mouseA类,继承了MouseAdaper,用来完成鼠标相应事件操作
class mouseA extends MouseAdapter
public void mousePressed(MouseEvent e)
statusBar.setText(" 点击鼠标于 @:["+e.getX() +","+e.getY()+"]");//设置状态提示
itemList[index].x1=itemList[index].x2=e.getX();
itemList[index].y1=itemList[index].y2=e.getY();
//如果当前选择的图形是随笔画或者橡皮擦,则进行下面的操作
if(currentChoice==3||currentChoice==13)
itemList[index].x1=itemList[index].x2=e.getX();
itemList[index].y1=itemList[index].y2=e.getY();
createNewItem();
//如果当前选择的图形式文字输入,则进行下面的操作
if(currentChoice==14)
itemList[index].x1=e.getX();
itemList[index].y1=e.getY();
input=JOptionPane.showInputDialog(
"输入文字!");
itemList[index].s1=
itemList[index].x2=f1;
itemList[index].y2=f2;
itemList[index].s2=style1;
currentChoice=14;
createNewItem();
drawingArea.repaint();
public void mouseReleased(MouseEvent e)
statusBar.setText(" 释放鼠标 @:["+e.getX() +","+e.getY()+"]");//设置状态提示
if(currentChoice==3||currentChoice==13)
itemList[index].x1=e.getX();
itemList[index].y1=e.getY();
itemList[index].x2=e.getX();
itemList[index].y2=e.getY();
repaint();
createNewItem();
public void mouseEntered(MouseEvent e)
statusBar.setText(" 鼠标在画图板内 @:["+e.getX() +","+e.getY()+"]");
public void mouseExited(MouseEvent e)
statusBar.setText(" 鼠标在画图板外 @:["+e.getX() +","+e.getY()+"]");
//鼠标事件mouseB类继承了MouseMotionAdapter,用来完成鼠标移动时的相应操作
class mouseB extends MouseMotionAdapter
public void mouseDragged(MouseEvent e)
statusBar.setText(" 鼠标拖动 @:["+e.getX() +","+e.getY()+"]");//设置状态提示
if(currentChoice==3||currentChoice==13)
itemList[index-1].x1=itemList[index].x2=itemList[index].x1=e.getX();
itemList[index-1].y1=itemList[index].y2=itemList[index].y1=e.getY();
createNewItem();
itemList[index].x2=e.getX();
itemList[index].y2=e.getY();
repaint();
public void mouseMoved(MouseEvent e)
statusBar.setText(" 鼠标移动 @:["+e.getX() +","+e.getY()+"]");
} // 选择字体风格时候用到的事件侦听器类,加入到字体风格的选择框中
private class checkBoxHandler implements ItemListener
public void itemStateChanged(ItemEvent e)
if(e.getSource()==bold)
if(e.getStateChange()==ItemEvent.SELECTED)
f1=Font.BOLD;
f1=Font.PLAIN;
if(e.getSource()==italic)
if(e.getStateChange()==ItemEvent.SELECTED)
f2=Font.ITALIC;
f2=Font.PLAIN;
//画图面板类,用来画图
class DrawPanel extends JPanel
public DrawPanel()
setCursor(Cursor.getPredefinedCursor(Cursor.CROSSHAIR_CURSOR));
setBackground(Color.white);
addMouseListener(new mouseA());
addMouseMotionListener(new mouseB());
public void paintComponent(Graphics g)
super.paintComponent(g);
Graphics2D g2d=(Graphics2D)g;
//定义画笔
while(j&=index)
draw(g2d,itemList[j]);
void draw(Graphics2D g2d,drawings i)
i.draw(g2d);
//将画笔传入到各个子类中,用来完成各自的绘图
//新建一个画图基本单元对象的程序段
void createNewItem()
if(currentChoice==14) //进行相应的游标设置
drawingArea.setCursor(Cursor.getPredefinedCursor(Cursor.TEXT_CURSOR));
drawingArea.setCursor(Cursor.getPredefinedCursor(Cursor.CROSSHAIR_CURSOR));
switch(currentChoice)
itemList[index]=new Pencil();
itemList[index]=new Line();
itemList[index]=new Rect();
itemList[index]=new fillRect();
itemList[index]=new Oval();
itemList[index]=new fillOval();
itemList[index]=new Circle();
itemList[index]=new fillCircle();
itemList[index]=new RoundRect();
itemList[index]=new fillRoundRect();
itemList[index]=new Rubber();
itemList[index]=new Word();
itemList[index].type=currentC
itemList[index].R=R;
itemList[index].G=G;
itemList[index].B=B;
itemList[index].stroke=
//选择当前颜色
public void chooseColor()
color=JColorChooser.showDialog(MiniDrawPad.this, "颜色设置", color);
R=color.getRed();
G=color.getGreen();
B=color.getBlue();
itemList[index].R=R;
itemList[index].G=G;
itemList[index].B=B;
//选择当前线条粗细
public void setStroke()
input=JOptionPane.showInputDialog("请输入保存字段");
stroke=Float.parseFloat(input);
itemList[index].stroke=
//保存图形文件程序段
public void saveFile()
JFileChooser fileChooser=new JFileChooser();
fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
int result =fileChooser.showSaveDialog(this);
if(result ==JFileChooser.CANCEL_OPTION)
File fileName=fileChooser.getSelectedFile();
fileName.canWrite();
if(fileName==null||fileName.getName().equals(""))
JOptionPane.showMessageDialog(fileChooser, "非法文件名","非法文件名",JOptionPane.ERROR_MESSAGE);
fileName.delete();
FileOutputStream fos=new FileOutputStream(fileName);
output =new ObjectOutputStream(fos);
output.writeInt(index);
for(int i=0;i&i++)
drawings p=itemList[i];
output.writeObject(p);
output.flush();
//将所有图形信息强制转换成父类线形化存储到文件中
output.close();
fos.close();
catch(IOException ioe)
ioe.printStackTrace();
//打开一个图形文件程序段
public void loadFile()
JFileChooser fileChooser=new JFileChooser();
fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
int result =fileChooser.showOpenDialog(this);
if(result ==JFileChooser.CANCEL_OPTION)
File fileName=fileChooser.getSelectedFile();
fileName.canRead();
if(fileName==null||fileName.getName().equals(""))
JOptionPane.showMessageDialog(fileChooser, "非法文件名","非法文件名",JOptionPane.ERROR_MESSAGE);
FileInputStream fis=new FileInputStream(fileName);
input =new ObjectInputStream(fis);
drawings inputR
int countNumber=0;
countNumber=input.readInt();
for(index=0;index&countNindex++)
inputRecord=(drawings)input.readObject();
itemList[index]=inputR
createNewItem();
input.close();
repaint();
catch(EOFException endofFileException)
JOptionPane.showMessageDialog(this, "没有该文件","无结果",JOptionPane.ERROR_MESSAGE);
catch(ClassNotFoundException ClassNotFoundException)
JOptionPane.showMessageDialog(this, "Unable to Create Object","end of file",JOptionPane.ERROR_MESSAGE);
catch(IOException ioException)
JOptionPane.showMessageDialog(this, "读取文件时出错","读取错误",JOptionPane.ERROR_MESSAGE);
//新建一个文件程序段
public void newFile()
currentChoice=3;
color =Color.
stroke=(float) 1.0f;
createNewItem();
repaint(); //将有关值设置为初始状态,重画
//主函数段
public static void main(String args[])
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
catch(Exception e){} //将界面设置为当前windows风格
MiniDrawPad newPad=new MiniDrawPad();
newPad.addWindowListener(
new WindowAdapter()
public void windowClosing(WindowEvent e)
{System.exit(0);}
} } 父类drawings:package MiniDrawP import java.awt.Graphics2D;import java.io.S class drawings implements Serializable{ int x1,y1,x2,y2; //定义坐标属性
int R,G,B;
//定义色彩属性
//定义线条粗细属性
//定义字体属性
String s1;
String s2;
//定义字体风格属性
void draw(Graphics2D g2d){}} Drawings的子类:class Line extends drawings //直线类{ void draw(Graphics2D g2d) {
g2d.setPaint(new Color(R,G,B));
g2d.setStroke(new BasicStroke(stroke,BasicStroke.CAP_ROUND,BasicStroke.JOIN_BEVEL));
g2d.drawLine(x1, y1, x2, y2); } } class Rect extends drawings //矩形类{
void draw(Graphics2D g2d) {
g2d.setPaint(new Color(R,G,B));
g2d.setStroke(new BasicStroke(stroke));
g2d.drawRect(Math.min(x1, x2), Math.min(y1, y2), Math.abs(x1-x2), Math.abs(y1-y2)); } } class fillRect extends drawings //实心矩形类{ void draw(Graphics2D g2d) {
g2d.setPaint(new Color(R,G,B));
g2d.setStroke(new BasicStroke(stroke));
g2d.fillRect(Math.min(x1, x2), Math.min(y1, y2), Math.abs(x1-x2), Math.abs(y1-y2)); } } class Oval extends drawings //椭圆类{ void draw(Graphics2D g2d) {
g2d.setPaint(new Color(R,G,B));
g2d.setStroke(new BasicStroke(stroke));
g2d.drawOval(Math.min(x1, x2), Math.min(y1, y2), Math.abs(x1-x2), Math.abs(y1-y2)); } } class fillOval extends drawings //实心椭圆类{ void draw(Graphics2D g2d) {
g2d.setPaint(new Color(R,G,B));
g2d.setStroke(new BasicStroke(stroke));
g2d.fillOval(Math.min(x1, x2), Math.min(y1, y2), Math.abs(x1-x2), Math.abs(y1-y2)); } } class Circle extends drawings //圆类{ void draw(Graphics2D g2d) {
g2d.setPaint(new Color(R,G,B));
g2d.setStroke(new BasicStroke(stroke));
g2d.drawOval(Math.min(x1, x2), Math.min(y1, y2), Math.abs(x1-x2), Math.abs(y1-y2)); } } class fillCircle extends drawings //实心圆类{ void draw(Graphics2D g2d) {
g2d.setPaint(new Color(R,G,B));
g2d.setStroke(new BasicStroke(stroke));
g2d.fillOval(Math.min(x1, x2), Math.min(y1, y2), Math.abs(x1-x2), Math.abs(y1-y2)); } } class RoundRect extends drawings //圆角矩形类{ void draw(Graphics2D g2d) {
g2d.setPaint(new Color(R,G,B));
g2d.setStroke(new BasicStroke(stroke));
g2d.drawRoundRect(Math.min(x1, x2), Math.min(y1, y2), Math.abs(x1-x2), Math.abs(y1-y2),50,35); } } class fillRoundRect extends drawings //实心圆角矩形类{ void draw(Graphics2D g2d) {
g2d.setPaint(new Color(R,G,B));
g2d.setStroke(new BasicStroke(stroke));
g2d.fillRoundRect(Math.min(x1, x2), Math.min(y1, y2), Math.abs(x1-x2), Math.abs(y1-y2),50,35); } } class Pencil extends drawings //铅笔类{ void draw(Graphics2D g2d) {
g2d.setPaint(new Color(R,G,B));
g2d.setStroke(new BasicStroke(stroke,
BasicStroke.CAP_ROUND,BasicStroke.JOIN_BEVEL));
g2d.fillOval(Math.min(x1, x2), Math.min(y1, y2), Math.abs(x1-x2), Math.abs(y1-y2)); } } class Rubber extends drawings //橡皮擦类{ void draw(Graphics2D g2d) {
g2d.setPaint(new Color(255,255,255));
g2d.setStroke(new BasicStroke(stroke+4,
BasicStroke.CAP_ROUND,BasicStroke.JOIN_BEVEL));
g2d.drawLine(x1,y1, x2, y2); } } class Word extends drawings //文字类{ void draw(Graphics2D g2d) {
g2d.setPaint(new Color(R,G,B));
g2d.setFont(new Font(s2,x2+y2,((int)stroke)*18));
if(s1!=null)
g2d.drawString(s1, x1, y1);
登录百度帐号推荐应用
为兴趣而生,贴吧更懂你。或跪求大神们,一首男的一直笑一直笑的DJ,_dj吧_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0成为超级会员,使用一键签到本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:121,866贴子:
跪求大神们,一首男的一直笑一直笑的DJ,收藏
鼓点很重?听着有点鬼步那种音乐的意思?
鬼步DJ - HAHAHA
真名我找不到,一点信息都没有。
鬼舞哈哈大笑
那版是英文名我忘了
我有,这首歌很老了
QQ空间有一个开场动画 就只这笑声
这首歌名字:Hahaha-smf
试听地址:交流QQ:896327
小恩俊-你不是喜欢嗨么
在轮回dj舞曲网搜:鬼步DJ 你给我聪明点
登录百度帐号推荐应用
为兴趣而生,贴吧更懂你。或跪求大神!_flash吧_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0成为超级会员,使用一键签到本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:68,724贴子:
跪求大神!收藏
怎么把图片颜色搞成原拍的
你这个是PS的范围,给图层加曲线效果自己调。
我其实很想知道你都有了两张照片还问什么。。。
登录百度帐号推荐应用
为兴趣而生,贴吧更懂你。或【另类吧】求大神知道,找这个另类!!跪求_另类吧_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0成为超级会员,使用一键签到本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:28,995贴子:
【另类吧】求大神知道,找这个另类!!跪求收藏
另类喊到凌晨一点伤痛布满我的眼,触摸不到你的脸、你离我到底有多远
之前听过找不到了、一个女的喊的、挺好听
明天电脑上发给你.
抹不掉的记忆 无法回到过去 对你我不曾放弃 对你的爱难忘记另类喊到凌晨1点伤痛布满我的眼 触摸不到你的脸你离我到底有多远雪花飘絮恋红尘 忘不掉你的眼神 这些年我一个人我为你锁住我心门如今你TM离我去 一人怎么再继续 你的话我心铭记我写下这篇离别句这段情它太寂寞 只因前世犯下错 如果能够在来过我绝对不会在犯错哪怕相隔千万里也控制不住去爱你 抛开所有的知己我把你放进我心底如果爱能感动天请让我回到你身边 陪你笑看人世间我为你写下这诗篇我一直TM在等待我等你回头把我爱 关了电脑放下耳麦世界哪有真情在等你等的心好累 等你等到心已碎 想着往事一个人醉一个人来回味现在我已看透 不想再去守候 为你已经放弃现实怎么还能再放纵没有所谓的缠绵也没有所谓的誓言 既然回不到从前就让我忘记这一年几个月的思念 几个月的留恋 我喊完这首另类请你滚出我的视线
我咋看这词不押韵呢
倾城小美的词儿
登录百度帐号推荐应用
为兴趣而生,贴吧更懂你。或

我要回帖

更多关于 跪求大神别搞笑 的文章

 

随机推荐