Relative atomic mass

来源:互联网 发布:淘宝店铺综合排名查询 编辑:程序博客网 时间:2024/06/14 16:23

Relative atomic mass


Problem Description
Relative atomic mass is a dimensionless physical quantity, the ratio of the average mass of atoms of an element (from a single given sample or source) to 12of the mass of an atom of carbon-12 (known as the unified atomic mass unit).
You need to calculate the relative atomic mass of a molecule, which consists of one or several atoms. In this problem, you only need to process molecules which contain hydrogen atoms, oxygen atoms, and carbon atoms. These three types of atom are written as ’H’,’O’ and ’C’ repectively. For your information, the relative atomic mass of one hydrogen atom is 1, and the relative atomic mass of one oxygen atom is 16 and the relative atomic mass of one carbon atom is 12. A molecule is demonstrated as a string, of which each letter is for an atom. For example, a molecule ’HOH’ contains two hydrogen atoms and one oxygen atom, therefore its relative atomic mass is 18 = 2 * 1 + 16.

 

Input
The first line of input contains one integer N(N ≤ 10), the number of molecules. In the next N lines, the i-th line contains a string, describing the i-th molecule. The length of each string would not exceed 10.
 

Output
For each molecule, output its relative atomic mass.
 

Sample Input
5HCOHOHCHHHCHHOH
 

Sample Output
1121618
46
代码:
#include<stdio.h>#include<string.h>int main(){    int t;    scanf("%d",&t);    while(t--)    {       char a[10055];       scanf("%s",&a);       int len=strlen(a);       int ans=0;       for(int i=0;i<len;i++)        {            if(a[i]=='H')                ans+=1;            if(a[i]=='C')                ans+=12;            if(a[i]=='O')                ans+=16;        }        printf("%d\n",ans);    }    return 0;}