自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

幻风帝影的博客

看杨柳飞绵滚滚,对桃花醉脸醺醺

  • 博客(11)
  • 收藏
  • 关注

原创 正数高精度运算

功能描述:进行高长度非负数据的高精度相加运算 长度限制:受内存限制 实现原理:栈的调用 输入限制:正经用户的正常输入,相加的数据在同一换行前,数与数之间仅用一个空格隔开,以文件结束符为运行结束标志,输入样例如下: 2.99792 3.141592658 2.71828 520.1314 郑重声明:在符合要求的输入情况下,仍然可能存在未明BUG,如果发现,请留言 具体实现: #include &l...

2018-12-23 01:31:10 221

原创 第二期训练题 - 第三题

整除的尾数 Time limit 1000 ms Memory limit 32768 kB 问题描述 一个整数,只知道前几位,不知道末二位,被另一个整数除尽了,那么该数的末二位该是什么呢? 输入 输入数据有若干组,每组数据包含二个整数a,b(0<a<10000, 10<b<100),若遇到0 0则处理结束。 输出 对应每组数据,将满足条件的所有尾数在一行内输出,格式见样

2018-12-14 17:36:16 290

原创 第二期练习题 - 第二题

Climbing Worm Time limit 1000 ms Memory limit 32768 kB Problem Description An inch worm is at the bottom of a well n inches deep. It has enough energy to climb u inches every minute, but then has to ...

2018-12-14 16:58:41 268

原创 第一期练习题 - 第八题

A + B Problem Too from Virtual Judge #include <iostream> using namespace std; int main(void) { int a, b; while(cin >> a >&am

2018-12-07 02:39:27 224

原创 第一期练习题 - 第七题

The volume of a sphere from Virtual Judge #include <stdio.h> #define PI 3.1415927 int main(void) { double r; while(scanf("%lf", &r) != EOF) {

2018-12-07 02:25:46 227

原创 第一期练习题 - 第六题

The sort of ASCII from Virtual Judge #include <iostream> using namespace std; int main(void) { char array[3], temp; int i, j, min; bool flag = false; while(cin &

2018-12-07 02:03:20 237

原创 第一期训练题 - 第五题

Sort from Virtual Judge #include <iostream> #include <cstdio> #include <cstdlib> using

2018-12-07 01:13:19 292

原创 第一期练习题 - 第四题

A + B Problem from Virtual Judge #include <iostream> using namespace std; int main(void) { int a, b; while(cin >> a &amp

2018-12-05 15:24:37 271

原创 第一期练习题 - 第三题

Stones on the Table from CodeForces #include <iostream> using namespace std; int main(void) { int array[50]; int count, i, n; count = 0; cin >&am

2018-12-05 14:44:27 243

原创 第一期练习题 - 第二题

George and Accommodation from CodeForces #include <iostream> using namespace std; int main(void) { int n, count, now, max; int i; count = 0; cin >&am

2018-12-05 14:20:31 279

原创 第一期练习题 - 第一题

第一题 1. String Task from CodeForces #include <iostream> using namespace std; int main(void) { char temp, array[201]; int count, i; count = i = 0; while(1) { temp = ci

2018-12-05 13:46:37 408

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除