• decimal system 2016


    Problem Description
    As we know , we always use the decimal system in our common life, even using the computer. If we want to calculate the value that 3 plus 9, we just import 3 and 9.after calculation of computer, we will get the result of 12.
    But after learning <<The Principle Of Computer>>,we know that the computer will do the calculation as the following steps:
    1 computer change the 3 into binary formality like 11;
    2 computer change the 9 into binary formality like 1001;
    3 computer plus the two number and get the result 1100;
    4 computer change the result into decimal formality like 12;
    5 computer export the result;

    In the computer system there are other formalities to deal with the number such as hexadecimal. Now I will give several number with a kind of change method, for example, if I give you 1011(2), it means 1011 is a number in the binary system, and 123(10) means 123 if a number in the decimal system. Now I will give you some numbers with any kind of system, you guys should tell me the sum of the number in the decimal system.
     
    Input
    There will be several cases. The first line of each case contains one integers N, and N means there will be N numbers to import, then there will be N numbers at the next N lines, each line contains a number with such form : X1….Xn.(Y), and 0<=Xi<Y, 1<Y<=10. I promise you that the sum will not exceed the 100000000, and there will be at most 100 cases and the 0<N<=1000.
     
    Output
    There is only one line output case for each input case, which is the sum of all the number. The sum must be expressed using the decimal system.
     
    Sample Input
    3 1(2) 2(3) 3(4) 4 11(10) 11(2) 11(3) 11(4)
     
    Sample Output
    6 23
     1 #include <iostream>  
     2 using namespace std;  
     3   
     4 int pow(int m,int n)//求m的n次幂  
     5 {  
     6     long int pro = 1;  
     7     while(n--)  
     8         pro *= m;  
     9     return pro;  
    10 }  
    11   
    12 int main()  
    13 {  
    14     int T,p,q;//k为指数  
    15       
    16     char left_arc,right_arc;  
    17     while (cin >> T)  
    18     {     
    19         int sum = 0;  
    20         while(T--)  
    21         {  
    22             int k = 0;  
    23             cin >> p >> left_arc >> q >> right_arc;  
    24   
    25             while (p != 0)  
    26             {  
    27                 sum += p % 10 * pow(q,k++);  
    28                 p /= 10;  
    29             }         
    30         }  
    31         cout << sum << endl;  
    32     }  
    33   
    34     return 0;  
    35 }  
  • 相关阅读:
    理解Web路由(浅谈前后端路由与前后端渲染)
    JavaEE开发之SpringMVC中的路由配置及参数传递详解
    Vue2.0 render: h => h(App)的解释
    vue data不可以使用箭头函数的问题解析
    9、响应式数据原理
    项目中的问题
    7-42 整型关键字的散列映射 (25分)
    7-43 字符串关键字的散列映射 (25分)
    7-45 航空公司VIP客户查询 (25分)
    7-44 基于词频的文件相似度 (30分)
  • 原文地址:https://www.cnblogs.com/wangmengmeng/p/4655250.html
Copyright © 2020-2023  润新知