【CSDN新手必看】怎样插入源代码及帖图

genlic 2010-07-31 09:00:40
好吧,我承认这是很简单的问题。。

但是还是看到很多帖子,很多人对于插入源代码的排版...让人很失望。。

插入代码的方法:

上面剪头指向的地方,点击一下变成这样——>

然后将他们分开成如下格式:

效果如下:

//你的源码
int main()
{
return 0;
}

这样的话你的代码就会很好的显示了。

Loaden 编辑:帖图的方法
首先,CSDN是不支持上传图片的。所以如果要帖图,您需要链接外部链接上的图片。比如:
http://hi.csdn.net/attachment/201007/31/2545146_1280581009rkQw.jpg

这个图片应该是上传在CSDN的博客空间中的。
这样,就可以通过插入源码图标的右边第四上图标,才执行帖图操作了。

...全文
976 87 打赏 收藏 转发到动态 举报
写回复
用AI写文章
87 条回复
切换为时间正序
请发表友善的回复…
发表回复
AIxxx 2013-04-10
  • 打赏
  • 举报
回复
为什么写博客时候插入代码确定后再发表不显示框框啊
AIxxx 2013-04-10
  • 打赏
  • 举报
回复
package day07.MianXiangDuiXiang;

class Person{
	String name;
	int age;
}

//这里用到了extends就是继承,即Student继承Person
class Student extends Person{
	String school;
}

public class JiCheng{
	public static void main(String[] args){
		Student s = new Student();
		//访问Person类中的name属性
		s.name = "张三";
		//访问Person类总的age属性
		s.age = 22;
		//访问Student类中的school属性
		s.school = "北京";
		System.out.println("姓名: " + s.name + ", 年龄:  " + s.age + ", 学校: " + s.school);
	}
}
yss28 2013-04-07
  • 打赏
  • 举报
回复
print()
val_sum = 0
for i in range(100):
    exec("val_sum += val{0}".format(i))
 
print(val_sum)
yss28 2013-04-07
  • 打赏
  • 举报
回复
[code=c]print()
val_sum = 0
for i in range(100):
    exec("val_sum += val{0}".format(i))
 
print(val_sum)
[/code]
yss28 2013-04-07
  • 打赏
  • 举报
回复
print()
val_sum = 0
for i in range(100):
    exec("val_sum += val{0}".format(i))
 
print(val_sum)
落单的毛毛虫 2013-03-18
  • 打赏
  • 举报
回复

# 计算非数组变量的总和
for i in range(100):
    exec("val{0} = {0}".format(i))

for i in range(100):
    exec("print(val{0}, end = ' ')".format(i))
print()
val_sum = 0
for i in range(100):
    exec("val_sum += val{0}".format(i))

print(val_sum)
拎干的毛巾 2012-12-15
  • 打赏
  • 举报
回复

Java code
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
public class CreateSimpleExcelToDisk {

/**
* @作者:heasen
* @日期:2010-3-24
* @功能:手工构建一个简单格式的Excel
*/
private static List<Student> getStudent() throws Exception{
List list = new ArrayList();
SimpleDateFormat df = new SimpleDateFormat("yyyy-mm-dd");

Student user1 = new Student(1,"张三",16,df.parse("1997-03-12"));
Student user2 = new Student(2,"李四",17,df.parse("1996-08-12"));
Student user3 = new Student(3,"王五",26,df.parse("1985-11-12"));
list.add(user1);
list.add(user2);
list.add(user3);

return list;
}
public static void main(String[] args) throws Exception {
//第一步,创建一个webbook,对应一个Excel文件
HSSFWorkbook wb = new HSSFWorkbook();
//第二步,在webbook中添加一个sheet,对应Excel文件中的sheet
HSSFSheet sheet = wb.createSheet("学生表一");
//第三步,在sheet中添加表头第0行,注意老版本poi对Excel的行数列数有限制short
HSSFRow row = sheet.createRow((int)0);
//第四步,创建单元格,并设置值表头 设置表头居中
HSSFCellStyle style = wb.createCellStyle();
style.setAlignment(HSSFCellStyle.ALIGN_CENTER); //创建一个居中格式

HSSFCell cell = row.createCell((short)0);
cell.setCellValue("学号"); cell.setCellStyle(style);
cell = row.createCell((short)1);
cell.setCellValue("姓名"); cell.setCellStyle(style);
cell = row.createCell((short)2);
cell.setCellValue("年龄"); cell.setCellStyle(style);
cell = row.createCell((short)3);
cell.setCellValue("生日"); cell.setCellStyle(style);

//第五步,写入实体数据 实际应用中这些数据从数据库得到,
List list = CreateSimpleExcelToDisk.getStudent();

for(int i=0;i<list.size();i++){
row = sheet.createRow((int)i+1);
Student stu = (Student) list.get(i);
//第四步,创建单元格,并设置值
row.createCell((short)0).setCellValue((double)stu.getId());
row.createCell((short)1).setCellValue(stu.getName());
row.createCell((short)2).setCellValue((double)stu.getAge());
cell = row.createCell((short)3);
cell.setCellValue(new SimpleDateFormat("yyyy-mm-dd").format(stu.getBirth()));
}
//第六步,将文件存到指定位置
try {
FileOutputStream fout = new FileOutputStream("E:/students.xls");
wb.write(fout);
fout.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}


xml5200 2012-11-01
  • 打赏
  • 举报
回复



update Contact set B=cast(cast(B as int)+@B as varchar(50)) where ...

dingyet 2012-10-12
  • 打赏
  • 举报
回复
谢谢,学习了
耍流氓大师 2012-10-03
  • 打赏
  • 举报
回复
我这上面什么都没有啊!!!!
liangliming2012 2012-09-14
  • 打赏
  • 举报
回复


贴图正困扰着我呢!谢谢!
大小鱼 2012-09-14
  • 打赏
  • 举报
回复
 
if(you!=sb)
{
you=sb;
}
大小鱼 2012-09-14
  • 打赏
  • 举报
回复
 
if(you!=sb)
{
you=sb;
}
大小鱼 2012-09-14
  • 打赏
  • 举报
回复
 
if(you!=sb)
{
you=sb;
}
haibiantingtao 2012-09-09
  • 打赏
  • 举报
回复
原来如此呀
jakzon_245 2012-08-06
  • 打赏
  • 举报
回复
[C/C++=code]
在发不出我就走人了
[\code]
jakzon_245 2012-08-06
  • 打赏
  • 举报
回复

#include<stdio.h>
int main(){
return 0;
//我来试试~
}

代码誊写工 2012-07-28
  • 打赏
  • 举报
回复
测试一下哈

Public Class Test
End Class
俺布吉岛 2012-07-25
  • 打赏
  • 举报
回复
学习了,谢谢!
madgrubbi90 2012-07-14
  • 打赏
  • 举报
回复

//only for test
加载更多回复(67)

15,440

社区成员

发帖
与我相关
我的任务
社区描述
C/C++ 非技术区
社区管理员
  • 非技术区社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧