码迷,mamicode.com
首页 >  
搜索关键字:eof    ( 7139个结果
nylg 640 Geometric Sum
Geometric Sum时间限制:1000ms | 内存限制:65535KB难度:3描述Compute (a + a^2 + … + a^n) mod m.(a+a2+…an)mod输入Three integers a,n,m.(1≤a,n,m≤10^18)It ends with EOF.输出T...
分类:其他好文   时间:2014-05-10 05:01:02    阅读次数:339
行编辑程序、括号匹配检验
行编辑程序、括号匹配检验程序都是利用的栈的数据结构。而这两个 小程序也非常好的显示了栈先进后出的思想。由于程序本身很简短、清晰,所 以也就不做多的解释了,直接上代码了。 行编辑程序: #include #include using namespace std; int main() { stack sta; char ch = getchar(); while(ch!=EOF) ...
分类:其他好文   时间:2014-05-04 18:55:11    阅读次数:423
[ACM] hdu 1231 最大连续子序列 (动规复习)
代码: #include #include #include #include using namespace std; const int maxn=10003; const int inf=0x7fffffff; int num[maxn]; int n; int main() { while(scanf("%d",&n)!=EOF&&n)...
分类:其他好文   时间:2014-05-04 12:39:16    阅读次数:331
判断标准I/O的缓冲区类型
#include void pr_stdio(const char *, FILE *);int main(){ FILE *fp; fputs("enter any character\n",stdout); if(getchar()==EOF) printf("getchar error");....
分类:其他好文   时间:2014-05-01 20:18:16    阅读次数:321
【HDOJ】2149 Public Sale
看Discuss说是博弈论,没学到这个分类。不过仔细想了想,发现。如果m 2 3 int main() { 4 int m, n; 5 int i; 6 7 while (scanf("%d %d", &m, &n) != EOF) { 8 if (m <...
分类:其他好文   时间:2014-05-01 19:38:17    阅读次数:368
[hdu-2048] 阿牛的EOF牛肉串
阿牛的EOF牛肉串 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 19255    Accepted Submission(s): 8986 Problem Description 今年的ACM暑期集训队一共...
分类:其他好文   时间:2014-04-30 22:22:38    阅读次数:268
输入与enter
#includeusing namespace std;int main(){ char a,b,c; while(scanf("%c%c%c",&a,&b,&c)!=EOF) { getchar(); cout<<a<<b<<c<<endl; } retur...
分类:其他好文   时间:2014-04-30 14:00:36    阅读次数:346
HDU1720 A+B Coming (16进制加法)
16进制加法1 #include2 int main()3 {4 int a,b;5 while(scanf("%x %x",&a,&b)!=EOF)6 {7 printf("%d\n",a+b); 8 } 9 }
分类:其他好文   时间:2014-04-30 02:19:33    阅读次数:357
HDU1719 Friend (数学推导)
friend numbers = 2^x + 3^y -1 1 #include 2 int main() 3 { 4 __int64 a; 5 while(scanf("%I64d",&a)!=EOF) 6 { 7 if(!a) 8 { 9...
分类:其他好文   时间:2014-04-30 01:43:36    阅读次数:322
7139条   上一页 1 ... 712 713 714
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!