上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页
摘要: Problem Description输入一个八进制的字符串,将它转换成等价的十进制字符串,用pringf的%s格式输出。Input首先输入一个正整数t,表示有t组测试数据(1#include #include long long mishu(int j){ long long res = 1... 阅读全文
posted @ 2014-12-12 13:37 liuwt365 阅读(661) 评论(0) 推荐(0) 编辑
摘要: Problem Description输入n(n 2 #include 3 void sort(char * str[],int size) 4 { 5 int i,j; 6 char * tmp; 7 for(i=0;i0)12 {13 ... 阅读全文
posted @ 2014-12-12 13:34 liuwt365 阅读(459) 评论(0) 推荐(0) 编辑
摘要: Problem Description输入n个字符串(n 2 #include 3 int main() 4 { 5 int n,i; 6 char a[101],b[101],ch; 7 while(scanf("%d",&n)!=EOF) 8 { 9 ... 阅读全文
posted @ 2014-12-12 13:33 liuwt365 阅读(842) 评论(0) 推荐(0) 编辑
摘要: Problem Description你弟弟刚刚学会写英语的一(one)、二(two)和三(three)。他在纸上写了好些一二三,可惜有些字母写错了。已知每个单词最多有一个字母写错了(单词长度肯定不会错),你能认出他写的啥吗?Input第一行为单词的个数(不超过10)。以下每行为一个单词,单词长度正... 阅读全文
posted @ 2014-12-12 13:31 liuwt365 阅读(428) 评论(0) 推荐(0) 编辑
摘要: Problem Description输入无符号短整数k[hex.]和p[oct.],将k的高字节作为结果的低字节,p的高字节作为结果的高字节组成一个新的整数。Inputk[hex.]和p[oct.]Output操作得到的新的整数n.Sample Input0xd9 01117Sample Outp... 阅读全文
posted @ 2014-12-12 13:30 liuwt365 阅读(731) 评论(0) 推荐(0) 编辑
摘要: Problem Description牛牛是一种纸牌游戏,总共5张牌,规则如下: 如果找不到3张牌的点数之和是10的倍数,则为没牛; 如果其中3张牌的点数之和是10的倍数,则为有牛,剩下两张牌的点数和对10取余数,余数是几,就是牛几,特别的当余数是0的时候是牛牛; 例如: 1 2 3 4 5, 1... 阅读全文
posted @ 2014-12-12 13:28 liuwt365 阅读(1025) 评论(0) 推荐(0) 编辑
摘要: Problem Description把输入的字符按照反着顺序输出Input多组测试数据每组一行(每组数据不超过200个字符)Output按照输入的顺序反着输出各个字符Sample InputI am a boy.Sample Output.yob a ma I#include#include in... 阅读全文
posted @ 2014-12-12 13:27 liuwt365 阅读(599) 评论(0) 推荐(0) 编辑
摘要: Problem Description输入n,输出对应的边长为n的空心正六边形。为方便看图,样例中点 '.' 表示空格,打印图形时请打印空格而非小圆点。Input边长n.(n 2 #include 3 void prt(char c, int count) 4 { 5 while(c... 阅读全文
posted @ 2014-12-12 13:26 liuwt365 阅读(544) 评论(0) 推荐(0) 编辑
摘要: 1 package cn.test.DownLoad; 2 3 import java.io.File; 4 import java.io.InputStream; 5 import java.io.RandomAccessFile; 6 import java.net.HttpUR... 阅读全文
posted @ 2014-12-11 18:38 liuwt365 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 1 //1、声明URL 2 String path="http://localhost:8080/day22_DownLoad/file/a.rmvb"; 3 URL url=new URL(path); 4 //2、设置已下载文件 5 ... 阅读全文
posted @ 2014-12-11 18:16 liuwt365 阅读(399) 评论(0) 推荐(0) 编辑
摘要: 1 request.setCharacterEncoding("utf-8"); 2 String name=request.getParameter("name"); 3 //1、设置响应头 4 response.setContentType("a... 阅读全文
posted @ 2014-12-11 18:12 liuwt365 阅读(241) 评论(0) 推荐(0) 编辑
摘要: Problem Description 水题Input输入2个日期,日期按照年月日,年月日之间用符号-隔开(题目包含多组数据)Output求出这2个日期之间的天数(不包括自身),每组测试数据一行Sample Input2011-1-12011-1-5Sample Output3HINT为了简单之见,... 阅读全文
posted @ 2014-12-09 21:17 liuwt365 阅读(1087) 评论(0) 推荐(0) 编辑
摘要: Problem Description 验证哥德巴赫猜想:任何充分大(>=4)的偶数都可以用两个素数之和表示。Input输入一个偶数n。(2 2 3 #include 4 5 using namespace std; 6 7 int prime(int m) 8 9 {10 11 ... 阅读全文
posted @ 2014-12-09 21:15 liuwt365 阅读(436) 评论(0) 推荐(0) 编辑
摘要: Problem Description 小t最近学了C语言,他想要在女朋友小w面前展示一下自己的能力,小w喜欢如样例所示的图形,想让小t写一个程序来输出这样的图形,小t拿到后感觉有点困难,小t不想在女朋友面前尴尬,所以聪明的你来帮助帮助他吧。Input输入图形所占的列数n(n 2 int main(... 阅读全文
posted @ 2014-12-09 21:14 liuwt365 阅读(373) 评论(0) 推荐(0) 编辑
摘要: Problem Description 输入两个整数,求他们的最大公约数和最小公倍数。Input两个整数。Output最大公约数和最小公倍数。Sample Input12 9Sample Output3 36HINT可以把求最小公约数和最小公倍数写成函数,方便以后调用。 1 #include 2 ... 阅读全文
posted @ 2014-12-09 21:12 liuwt365 阅读(248) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页