A Simple Question of Chemistry(水)

本文介绍了一款用于自动化记录化学实验室温度变化的程序。该程序可在实验过程中自动记录每分钟的温度变化,并计算相邻时间点间的温度差值,便于进行数据分析及绘图。文章还提供了实现这一功能的具体代码。

Description

 

Your chemistry lab instructor is a very enthusiastic graduate student who clearly has forgotten what their undergraduate Chemistry 101 lab experience was like. Your instructor has come up with the brilliant idea that you will monitor the temperature of your mixture every minute for the entire lab. You will then plot the rate of change for the entire duration of the lab.

Being a promising computer scientist, you know you can automate part of this procedure, so you are writing a program you can run on your laptop during chemistry labs. (Laptops are only occasionally dissolved by the chemicals used in such labs.) You will write a program that will let you enter in each temperature as you observe it. The program will then calculate the difference between this temperature and the previous one, and print out the difference. Then you can feed this input into a simple graphing program and finish your plot before you leave the chemistry lab.

 

Input

 

The input is a series of temperatures, one per line, ranging from -10 to 200. The temperatures may be specified up to two decimal places. After the final observation, the number 999 will indicate the end of the input data stream. All data sets will have at least two temperature observations.

 

Output

 

Your program should output a series of differences between each temperature and the previous temperature. There is one fewer difference observed than the number of temperature observations (output nothing for the first temperature). Differences are always output to two decimal points, with no leading zeroes (except for the ones place for a number less than 1, such as 0.01) or spaces.

After the final output, print a line with "End of Output"

 

Sample Input

10.0
12.05
30.25
20
999

Sample Output

2.05
18.20
-10.25
End of Output

 

这个题的坑点就是数组的长度,当输入999的时候,跳出循环,结束,输出英文。

但是需要考虑的是数组中只有999的情况,这个时候数组循环的条件就不行了。因此需要

再循环时加一个条件。

代码

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cstring>
const int maxn = 100001;
using namespace std;

int main()
{
    int i, l;
    double a[maxn];
    double b[maxn];
    l = 0;
    while(scanf("%lf", &a[l]) && a[l] != 999)
    {
        l++;
    }

    for(i=1; a[i]!=999 && i<l; i++)
          printf("%.2lf\n",a[i]-a[i-1]);
    printf("End of Output\n");
    return 0;
}
 

1a-icho_uk_2010_1a.json: bad operand type for abs(): 'str' Error processing 2010-2a-icho_uk_2010_2a.json: bad operand type for abs(): 'str' Error processing 2010-3a-icho_uk_2010_3a.json: bad operand type for abs(): 'str' Error processing 2010-3c1_0-icho_uk_2010_3c1.json: bad operand type for abs(): 'str' Error processing 2010-3c1_1-icho_uk_2010_3c1.json: bad operand type for abs(): 'str' Error processing 2010-4c1-icho_uk_2010_4c1.json: bad operand type for abs(): 'str' Error processing 2010-4d1-icho_uk_2010_4d1.json: bad operand type for abs(): 'str' Error processing 2010-5a_0-icho_uk_2010_5a.json: bad operand type for abs(): 'str' Error processing 2010-5a_1-icho_uk_2010_5a.json: bad operand type for abs(): 'str' Error processing 2010-5a_2-icho_uk_2010_5a.json: bad operand type for abs(): 'str' Error processing 2010-6a-icho_uk_2010_6a.json: bad operand type for abs(): 'str' Error processing 2010-6b-icho_uk_2010_6b.json: bad operand type for abs(): 'str' Error processing 2010-6d-icho_uk_2010_6d.json: bad operand type for abs(): 'str' Error processing 2010-6e-icho_uk_2010_6e.json: bad operand type for abs(): 'str' Error processing 2010-6f-icho_uk_2010_6f.json: bad operand type for abs(): 'str' Error processing 2011-1a-icho_uk_2011_1a.json: bad operand type for abs(): 'str' Error processing 2011-1b_0-icho_uk_2011_1b.json: bad operand type for abs(): 'str' Error processing 2011-1b_1-icho_uk_2011_1b.json: bad operand type for abs(): 'str' Error processing 2011-1c-icho_uk_2011_1c.json: bad operand type for abs(): 'str' Error processing 2011-1e-icho_uk_2011_1e.json: bad operand type for abs(): 'str' Error processing 2011-2c-icho_uk_2011_2c.json: bad operand type for abs(): 'str' Error processing 2011-2d-icho_uk_2011_2d.json: bad operand type for abs(): 'str' Error processing 2011-2e-icho_uk_2011_2e.json: bad operand type for abs(): 'str' Error processing 2011-2f-icho_uk_2011_2f.json: bad operand type for abs(): 'str' Error processing 2011-3d-icho_uk_2011_3d.json: bad operand type for abs(): 'str' Error processing 2011-3e-icho_uk_2011_3e.json: bad operand type for abs(): 'str' Error processing 2011-5a-icho_uk_2011_5a.json: bad operand type for abs(): 'str' Error processing 2019-1a-icho_uk_2019_1a.json: bad operand type for abs(): 'str' Error processing 2019-1b1-icho_uk_2019_1b1.json: bad operand type for abs(): 'str' Error processing 2019-1b2-icho_uk_2019_1b2.json: bad operand type for abs(): 'str' Error processing 2019-1b3-icho_uk_2019_1b3.json: bad operand type for abs(): 'str' Error processing 2019-1d_0-icho_uk_2019_1d.json: bad operand type for abs(): 'str' Error processing 2019-1d_1-icho_uk_2019_1d.json: bad operand type for abs(): 'str' Error processing 2019-1d_2-icho_uk_2019_1d.json: bad operand type for abs(): 'str' Error processing 2019-1d_3-icho_uk_2019_1d.json: bad operand type for abs(): 'str' Error processing 2019-2a_0-icho_uk_2019_2a.json: bad operand type for abs(): 'str' Error processing 2019-2a_1-icho_uk_2019_2a.json: bad operand type for abs(): 'str' Error processing 2019-2a_2-icho_uk_2019_2a.json: bad operand type for abs(): 'str' Error processing 2019-2b_0-icho_uk_2019_2b.json: bad operand type for abs(): 'str' Error processing 2019-2b_1-icho_uk_2019_2b.json: bad operand type for abs(): 'str' Error processing 2019-2d-icho_uk_2019_2d.json: bad operand type for abs(): 'str' Error processing 2019-3a2-icho_uk_2019_3a2.json: bad operand type for abs(): 'str' Error processing 2019-4a-icho_uk_2019_4a.json: bad operand type for abs(): 'str' Error processing 2019-5d-icho_uk_2019_5d.json: bad operand type for abs(): 'str' Error processing 2019-5f-icho_uk_2019_5f.json: bad operand type for abs(): 'str' Error processing 2019-5g-icho_uk_2019_5g.json: bad operand type for abs(): 'str' Error processing 2020-1a-icho_uk_2020_1a.json: bad operand type for abs(): 'str' Error processing 2020-1b-icho_uk_2020_1b.json: bad operand type for abs(): 'str' Error processing 2020-1c-icho_uk_2020_1c.json: bad operand type for abs(): 'str' Error processing 2020-1d_0-icho_uk_2020_1d.json: bad operand type for abs(): 'str' Error processing 2020-1d_1-icho_uk_2020_1d.json: bad operand type for abs(): 'str' Error processing 2020-2a-icho_uk_2020_2a.json: bad operand type for abs(): 'str' Error processing 2020-2b-icho_uk_2020_2b.json: bad operand type for abs(): 'str' Error processing 2020-2c-icho_uk_2020_2c.json: bad operand type for abs(): 'str' Error processing 2020-2g-icho_uk_2020_2g.json: bad operand type for abs(): 'str' Error processing 2020-2h-icho_uk_2020_2h.json: bad operand type for abs(): 'str' Error processing 2020-4a-icho_uk_2020_4a.json: bad operand type for abs(): 'str' Error processing 2020-4b-icho_uk_2020_4b.json: bad operand type for abs(): 'str' Error processing 2020-4c-icho_uk_2020_4c.json: bad operand type for abs(): 'str' Error processing 2020-4e_0-icho_uk_2020_4e.json: bad operand type for abs(): 'str' Error processing 2020-4f-icho_uk_2020_4f.json: bad operand type for abs(): 'str' Error processing 2021-1b1_0-icho_uk_2021_q1b1.json: bad operand type for abs(): 'str' Error processing 2021-1b1_1-icho_uk_2021_q1b1.json: bad operand type for abs(): 'str' Error processing 2021-1b2-icho_uk_2021_q1b2.json: bad operand type for abs(): 'str' Error processing 2021-1c_0-icho_uk_2021_q1c.json: bad operand type for abs(): 'str' Error processing 2021-1c_1-icho_uk_2021_q1c.json: bad operand type for abs(): 'str' Error processing 2021-1c_2-icho_uk_2021_q1c.json: bad operand type for abs(): 'str' Error processing 2021-2c-icho_uk_2021_2c.json: bad operand type for abs(): 'str' Error processing 2021-2d-icho_uk_2021_2d.json: bad operand type for abs(): 'str' Error processing 2021-2f-icho_uk_2021_2f.json: bad operand type for abs(): 'str' Error processing 2021-3b-icho_uk_2021_3b.json: bad operand type for abs(): 'str' Error processing 2021-3g-icho_uk_2021_3g.json: bad operand type for abs(): 'str' Error processing 2021-6a-icho_uk_2021_q6a.json: bad operand type for abs(): 'str' Error processing 2021-6e-icho_uk_2021_q6e.json: bad operand type for abs(): 'str' Error processing 2022-1b-icho_uk_2022_q1b.json: bad operand type for abs(): 'str' Error processing 2022-1c-icho_uk_2022_q1c.json: bad operand type for abs(): 'str' Error processing 2022-1d-icho_uk_2022_q1d.json: bad operand type for abs(): 'str' Error processing 2022-1e_0-icho_uk_2022_q1e.json: bad operand type for abs(): 'str' Error processing 2022-1e_1-icho_uk_2022_q1e.json: bad operand type for abs(): 'str' Error processing 2022-1f-icho_uk_2022_q1f.json: bad operand type for abs(): 'str' Error processing 2022-1g-icho_uk_2022_q1g.json: bad operand type for abs(): 'str' Error processing 2022-2b-icho_uk_2022_q2b.json: bad operand type for abs(): 'str' Error processing 2022-2d_0-icho_uk_2022_q2d.json: bad operand type for abs(): 'str' Error processing 2022-2d_1-icho_uk_2022_q2d.json: bad operand type for abs(): 'str' Error processing 2022-2d_2-icho_uk_2022_q2d.json: bad operand type for abs(): 'str' Error processing 2022-3a-icho_uk_2022_q3a.json: bad operand type for abs(): 'str' Error processing 2022-3b_0-icho_uk_2022_q3b.json: bad operand type for abs(): 'str' Error processing 2022-3b_1-icho_uk_2022_q3b.json: bad operand type for abs(): 'str' Error processing 2022-3b_2-icho_uk_2022_q3b.json: bad operand type for abs(): 'str' Error processing 2022-3b_3-icho_uk_2022_q3b.json: bad operand type for abs(): 'str' Error processing 2022-3b_4-icho_uk_2022_q3b.json: bad operand type for abs(): 'str' Error processing 2022-4c-icho_uk_2022_q4c.json: bad operand type for abs(): 'str' Error processing 2022-6a_0-icho_uk_2022_q6a.json: bad operand type for abs(): 'str' Error processing 2022-6a_1-icho_uk_2022_q6a.json: bad operand type for abs(): 'str' Error processing 2022-6b-icho_uk_2022_q6b.json: bad operand type for abs(): 'str' Error processing 2023-1a-icho_uk_2023_q1a.json: bad operand type for abs(): 'str' Error processing 2023-1b-icho_uk_2023_q1b.json: bad operand type for abs(): 'str' Error processing 2023-1c1-icho_uk_2023_q1c1.json: bad operand type for abs(): 'str' Error processing 2023-1c2-icho_uk_2023_q1c2.json: bad operand type for abs(): 'str' Error processing 2023-1d1-icho_uk_2023_q1d1.json: bad operand type for abs(): 'str' Error processing 2023-1d2_0-icho_uk_2023_q1d2.json: bad operand type for abs(): 'str' Error processing 2023-1d2_1-icho_uk_2023_q1d2.json: bad operand type for abs(): 'str' Error processing 2023-1d2_2-icho_uk_2023_q1d2.json: bad operand type for abs(): 'str' Error processing 2023-1d2_3-icho_uk_2023_q1d2.json: bad operand type for abs(): 'str' Error processing 2023-1e-icho_uk_2023_q1e.json: bad operand type for abs(): 'str' Error processing 2023-2a-icho_uk_2023_q2a.json: bad operand type for abs(): 'str' Error processing 2023-2b-icho_uk_2023_q2b.json: bad operand type for abs(): 'str' Error processing 2023-2c-icho_uk_2023_q2c.json: bad operand type for abs(): 'str' Error processing 2023-2g1-icho_uk_2023_q2g1.json: bad operand type for abs(): 'str' Error processing 2023-2g2-icho_uk_2023_q2g2.json: bad operand type for abs(): 'str' Error processing 2023-2h1-icho_uk_2023_q2h1.json: bad operand type for abs(): 'str' Error processing 2023-2h2-icho_uk_2023_q2h2.json: bad operand type for abs(): 'str' Error processing 2023-2h3-icho_uk_2023_q2h3.json: bad operand type for abs(): 'str' Error processing 2023-2h5_0-icho_uk_2023_q2h5.json: bad operand type for abs(): 'str' Error processing 2023-2h5_1-icho_uk_2023_q2h5.json: bad operand type for abs(): 'str' Error processing 2023-5a2-icho_uk_2023_q5a2.json: bad operand type for abs(): 'str' Error processing 2023-5d-icho_uk_2023_q5d.json: bad operand type for abs(): 'str' Error processing 2023-5e-icho_uk_2023_q5e.json: bad operand type for abs(): 'str' Error processing 2023-5f2-icho_uk_2023_q5f2.json: bad operand type for abs(): 'str' Error processing combustion_engineering-1-OVGU-CE-march-2021-1.json: bad operand type for abs(): 'str' Error processing computational_photochemistry-photochemistry_1-photochemistry_1.json: bad operand type for abs(): 'str' Error processing computational_photochemistry-photochemistry_2-photochemistry_2.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_0-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_1-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_10-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_11-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_12-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_13-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_14-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_15-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_16-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_17-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_18-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_19-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_2-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_20-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_21-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_22-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_23-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_24-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_3-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_4-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_5-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_6-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_7-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_8-electron_counts.json: bad operand type for abs(): 'str' Error processing electron_counts-electron_counts_9-electron_counts.json: bad operand type for abs(): 'str' Error processing metal_complexes-metal_complexes_1-metal_complexes_1.json: bad operand type for abs(): 'str' Error processing metal_complexes-metal_complexes_11-metal_complexes_11.json: bad operand type for abs(): 'str' Error processing metal_complexes-metal_complexes_12-metal_complexes_12.json: bad operand type for abs(): 'str' Error processing metal_complexes-metal_complexes_2-metal_complexes_2.json: bad operand type for abs(): 'str' Error processing metal_complexes-metal_complexes_3-metal_complexes_3.json: bad operand type for abs(): 'str' Error processing metal_complexes-metal_complexes_4-metal_complexes_4.json: bad operand type for abs(): 'str' Error processing metal_complexes-metal_complexes_8-metal_complexes_8.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_0-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_1-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_10-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_11-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_12-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_13-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_14-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_15-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_16-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_17-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_18-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_19-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_2-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_20-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_21-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_22-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_23-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_3-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_4-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_5-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_6-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_7-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_8-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_isomers-number_of_isomers_9-number_of_structural_isomers.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_100-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_104-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_127-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_137-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_146-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_155-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_16-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_161-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_163-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_164-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_17-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_173-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_174-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_19-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_193-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_230-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_245-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_250-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_258-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_259-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_276-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_302-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_303-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_304-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_312-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_317-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_326-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_338-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_342-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_353-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_360-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_361-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_378-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_405-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_413-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_415-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_430-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_441-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_459-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_472-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_482-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_488-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_500-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_508-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_56-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_6-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_61-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_65-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_80-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing number_of_nmr_peaks-number_nmr_peaks_85-number_1h_nmr_shifts.json: bad operand type for abs(): 'str' Error processing oxidation_states-simple_oxidation_states_118-oxidation_states.json: bad operand type for abs(): 'str' Error processing oxidation_states-simple_oxidation_states_120-oxidation_states.json: bad operand type for abs(): 'str' Error processing oxidation_states-simple_oxidation_states_15-oxidation_states.json: bad operand type for abs(): 'str' Error processing oxidation_states-simple_oxidation_states_29-oxidation_states.json: bad operand type for abs(): 'str' Error processing oxidation_states-simple_oxidation_states_47-oxidation_states.json: bad operand type for abs(): 'str' Error processing oxidation_states-simple_oxidation_states_73-oxidation_states.json: bad operand type for abs(): 'str' Error processing oxidation_states-simple_oxidation_states_74-oxidation_states.json: bad operand type for abs(): 'str' Error processing oxidation_states-simple_oxidation_states_85-oxidation_states.json: bad operand type for abs(): 'str' Error processing oxidation_states-simple_oxidation_states_9-oxidation_states.json: bad operand type for abs(): 'str' Error processing oxidation_states-simple_oxidation_states_97-oxidation_states.json: bad operand type for abs(): 'str' Error processing periodic_table_properties-16-periodic_table_questions_16.json: bad operand type for abs(): 'str' Error processing periodic_table_properties-20-periodic_table_questions_20.json: bad operand type for abs(): 'str' Error processing polymer_chemistry_fsu-12-polymer_chemistry_12.json: bad operand type for abs(): 'str' Error processing polymer_chemistry_fsu-13-polymer_chemistry_13.json: bad operand type for abs(): 'str' Error processing polymer_chemistry_fsu-15-polymer_chemistry_15.json: bad operand type for abs(): 'str' Error processing reasoning-IV-reasoning_question_4.json: bad operand type for abs(): 'str'
最新发布
09-02
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值