上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页
摘要: Problem Description 输入平面坐标系中2点的坐标,输出它们之间的距离Input输入4个浮点数x1 y1 x2 y2,分别是点(x1,y1) (x2,y2)的坐标(多组数据)Output输出它们之间的距离,保留2位小数(每组数据一行)Sample Input1 0 2 0Sample... 阅读全文
posted @ 2014-12-09 21:11 liuwt365 阅读(377) 评论(0) 推荐(0) 编辑
摘要: Problem Description 打印出所有"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该本身。 例如:153是一个水仙花数,因为153=1^3+5^3+3^3。 Output:153?????????Input无Output所有的水仙花数,从小的开始。 每行一个Samp... 阅读全文
posted @ 2014-12-09 21:09 liuwt365 阅读(306) 评论(0) 推荐(0) 编辑
摘要: Problem Description “回文串”是一个正读和反读都一样的字符串,比如“level”或者“noon”等等就是回文串。请写一个程序判断读入的字符串是否是“回文”。Input输入包含多个测试实例,输入数据的第一行是一个正整数n,表示测试实例的个数,后面紧跟着是n个字符串。每个字符串长度不... 阅读全文
posted @ 2014-12-09 21:08 liuwt365 阅读(475) 评论(0) 推荐(0) 编辑
摘要: Problem Description 水题Input输入1个3位数(题目包含多组测试数据)Output分离该3位数的百位、十位和个位,反转后输出(每组测试数据一行)Sample Input250Sample Output052HINT分离出各位数字可以用取余和除数 注意在C语言里,2个整数相乘除结... 阅读全文
posted @ 2014-12-09 21:06 liuwt365 阅读(671) 评论(0) 推荐(0) 编辑
摘要: Problem Description 输入一个正整数n(nint main(){ long int s,a; int i,n; while(scanf("%d",&n)!=EOF) { s=0; ... 阅读全文
posted @ 2014-12-09 21:04 liuwt365 阅读(837) 评论(0) 推荐(0) 编辑
摘要: Problem Description 输入1个正整数n, 计算1+(1+2)+(1+2+3)+...+(1+2+3+...+n)Input输入正整数n(多组数据)Output输出1+(1+2)+(1+2+3)+...+(1+2+3+...+n)的值(每组数据一行)Sample Input2Samp... 阅读全文
posted @ 2014-12-09 21:02 liuwt365 阅读(1088) 评论(0) 推荐(0) 编辑
摘要: 1、导包2、核心类:MultipartRequest MultipartRequest是request的包装类 参数1:request 参数2:保存路径 参数3:上传文件大小,默认为1M 参数4:编码 参数5:重命名FileRenamePolicy,默认重命名格式是在名字后面加数字参... 阅读全文
posted @ 2014-12-08 21:40 liuwt365 阅读(1069) 评论(0) 推荐(0) 编辑
摘要: 在上传文件时,文件可能会很多,我们知道,当把全部的文件放到同一个目录中之后,打开目录会很慢这样也说明了,查找文件的效率是降低的我们把文件放到不同的目录中,以便于提高文件查找效率文件夹分级思想采用16进制命名文件夹,创建二级目录,这样可以把文件放到16*16=256个文件夹里面 1 String st... 阅读全文
posted @ 2014-12-08 20:01 liuwt365 阅读(984) 评论(0) 推荐(0) 编辑
摘要: 1、导包核心类: DiskFileItemFactory – 设置磁盘空间,保存临时文件。只是一个具类。 ServletFileUpload - 文件上传的核心类,此类接收request,并解析reqeust。2、设置表单为post,且enctype为multipart/form-data,传递的是... 阅读全文
posted @ 2014-12-07 20:42 liuwt365 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://huayi898.blog.163.com/blog/static/2581351620144442319155/下载win7_64bit原版官方系统1、用软碟通制作U盘启动盘并下载EFI_SHELL64,解压到U盘根目录,附下载地址:链接: http://pan.baidu.... 阅读全文
posted @ 2014-12-07 14:16 liuwt365 阅读(3311) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionYour task is to calculate the sum of some integers.InputInput contains an integer N in the first line, and then N lines follow. Eac... 阅读全文
posted @ 2014-12-05 20:31 liuwt365 阅读(252) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionYour task is to Calculate a + b.InputThe input will consist of a series of pairs of integers a and b, separated by a space, one pai... 阅读全文
posted @ 2014-12-05 20:29 liuwt365 阅读(275) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionYour task is to calculate the sum of some integers.InputInput contains multiple test cases, and one case one line. Each case starts... 阅读全文
posted @ 2014-12-05 20:28 liuwt365 阅读(212) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionYour task is to calculate the sum of some integers.InputInput contains an integer N in the first line, and then N lines follow. Eac... 阅读全文
posted @ 2014-12-05 20:27 liuwt365 阅读(319) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionYour task is to Calculate the sum of some integers.InputInput contains multiple test cases. Each test case contains a integer N, an... 阅读全文
posted @ 2014-12-05 20:26 liuwt365 阅读(312) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页