上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 24 下一页
摘要: 判断回文:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 判断回文{ class Program { static void Main(string[] args) { string s = Console.ReadLine(); int len=s.Length; int Flag=0; for (int i = 0; i num[... 阅读全文
posted @ 2014-03-10 21:12 同学少年 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 数字颠倒输出:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 数字颠倒输出{ class Program { static void Main(string[] args) { int n; String s = Console.ReadLine(); n = int.Parse(s); while (n!=0) ... 阅读全文
posted @ 2014-03-10 21:09 同学少年 阅读(178) 评论(0) 推荐(0) 编辑
摘要: Wooden Sticks Time Limit : 2000/1000ms (Java/Other)Memory Limit : 65536/32768K (Java/Other)Total Submission(s) : 5Accepted Submission(s) : 2Font: Times New Roman | Verdana | GeorgiaFont Size: ← →Problem DescriptionThere is a pile of n wooden sticks. The length and weight of each stick are known in a 阅读全文
posted @ 2014-03-10 20:56 同学少年 阅读(128) 评论(0) 推荐(0) 编辑
摘要: N皇后问题 Time Limit : 2000/1000ms (Java/Other)Memory Limit : 32768/32768K (Java/Other)Total Submission(s) : 11Accepted Submission(s) : 3Font: Times New Roman | Verdana | GeorgiaFont Size: ← →Problem Description在N*N的方格棋盘放置了N个皇后,使得它们不相互攻击(即任意2个皇后不允许处在同一排,同一列,也不允许处在与棋盘边框成45角的斜线上。你的任务是,对于给定的N,求出有多少种合法的放置方法 阅读全文
posted @ 2014-03-10 20:12 同学少年 阅读(191) 评论(0) 推荐(0) 编辑
摘要: A + B Problem II Time Limit : 2000/1000ms (Java/Other)Memory Limit : 65536/32768K (Java/Other)Total Submission(s) : 13Accepted Submission(s) : 4Font: Times New Roman | Verdana | Georgia Font Size: ← →Problem DescriptionI have a very simple problem for you. Given two integers A and B, your job is to 阅读全文
posted @ 2014-03-10 19:10 同学少年 阅读(122) 评论(0) 推荐(0) 编辑
摘要: Problem Description输入一个十进制数N,将它转换成R进制数输出。 Input输入数据包含多个测试实例,每个测试实例包含两个整数N(32位整数)和R(210)。Output为每个测试实例输出转换后的数,每个输出占一行。如果R大于10,则对应的数字规则参考16进制(比如,10用A表示,等等)。 Sample Input7 223 12-4 3Sample Output1111B-11Authorlcy 解题思路:使用栈,因为有负数,所以符号单独输出。代码:#include #include #include using namespace std;int main(){ i... 阅读全文
posted @ 2014-03-08 18:58 同学少年 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 18岁生日 Time Limit : 2000/1000ms (Java/Other)Memory Limit : 65536/32768K (Java/Other)Total Submission(s) : 14Accepted Submission(s) : 6Font: Times New Roman | Verdana | Georgia Font Size: ← →Problem DescriptionGardon的18岁生日就要到了,他当然很开心,可是他突然想到一个问题,是不是每个人从出生开始,到达18岁生日时所经过的天数都是一样的呢?似乎并不全都是这样,所以他想请你帮忙计算一下他 阅读全文
posted @ 2014-03-08 18:40 同学少年 阅读(178) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 水仙花数{ class Program { static void Main(string[] args) { int i,a,b,c; for (i = 100; i <1000; i++) { a=i%10; b=i/10%10; ... 阅读全文
posted @ 2014-03-07 21:31 同学少年 阅读(658) 评论(0) 推荐(0) 编辑
摘要: 题目:输入一行字符串,包括标点符号,空格和大小写字母,输出其最长回文串,忽略字母的大小写,空格和符号比如字符串 sabc, , Cba 则输出abc, , Cba代码:#include #include #include using namespace std;const int maxn=5010;string s;char buf[maxn];//存放字符串中的字母,且存放的都是大写字母(原串中的小写字母被转换成大写字母,判断回文串时容易判断)int p[maxn];//存放原串中第i个字母在原串中的位置int main(){ getline(cin,s); int m=0;... 阅读全文
posted @ 2014-03-04 21:00 同学少年 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 问题描述: 给你n组测试数据,每组测试数据有m(0using namespace std;int num[103];int n,m;int gcd(int n,int m)//两个数的最大公约数{ return m==0?n:gcd(m,n%m);}int lcm(int n,int m)//两个数的最小公倍数{ return n*m/gcd(n,m);}int solve(int num[])//循环求多个数的最小公倍数{ int result=lcm(num[1],num[2]); for(int i=2;i>n; int c=1; for(int i=... 阅读全文
posted @ 2014-03-02 18:43 同学少年 阅读(165) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 24 下一页