习题3-2 分子量(Molar Mass)

#include <iostream>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
double gmol(char ch) {
    if(ch=='C') return 12.01;
    else if(ch=='H') return 1.008;
    else if(ch=='O') return 16.00;
    else if(ch=='N') return 14.01;
}
int num(char ch) {
    return (ch-'0');
}
using namespace std;

int main() {
    char s[1001];
    int len,i,n,t,j,l,k;
    double sum;
    while(scanf("%d",&k)!=EOF) {
        for(l=1; l<=k; l++) {

            while(scanf("%s",s)!=EOF) {
                len=strlen(s);
                sum=0;
                for(n=1,i=len-1; i>=0;) {
                    if(!isalpha(s[i])) {
                        t=1,n=0;
                        for(j=i; !isalpha(s[j])&&j>0; j--) {
                            n+=(num(s[j])*t);
                            t*=10;
                        }
                        i=j;
                    } else {
                        sum+=(gmol(s[i])*n);
                        for(j=i-1; isalpha(s[j])&&j>=0; j--) {
                            sum+=gmol(s[j]);
                        }
                        i=j;
                    }
                }
                printf("%.3f\n",sum);
            }
        }
    }
    return 0;
}
/*写了蛮久 云里雾里 . 自定义了2个函数 gmol取原子量 num取数量 从数组最后len-1开始取元素 isalpha判断是否是字母(头文件 ctype.h) n为转化后的数量 ×原子量 相加*/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值