码迷,mamicode.com
首页 > 其他好文 > 详细

UVA-575-水题-模拟

时间:2017-05-14 17:58:21      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:ret   out   模拟   uva   ota   include   pow   --   string   

题意:

按照这个公式模拟

10120skew = 1×(25 1)+0×(24 1)+1×(23 1)+2×(22 1)+0×(21 1) = 31+0+7+6+0 = 44.

#include<iostream>
#include <stdio.h>
#include <memory.h>
#include<queue>
#include<math.h>
using namespace std;

int main()
{
	freopen("d:\\1.txt", "r", stdin);
	string str;
	while (cin >> str)
	{
		int length = str.length();
		if(length == 1 && str[0] == ‘0‘)
			return 0;
		int total = 0;
		for(int i = length - 1; i >= 0; i--)
		{
			total += (str.at(i) - ‘0‘) * (pow(2, length - i) - 1);
		}
		cout<<total<<endl;
	}
	return 0;
}

  

UVA-575-水题-模拟

标签:ret   out   模拟   uva   ota   include   pow   --   string   

原文地址:http://www.cnblogs.com/shuiyonglewodezzzzz/p/6852909.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!