是否可以像Android项目一样拥有价值资源?

时间:2019-11-06 14:26:37

标签: kotlin-multiplatform

Blockquote

我目前正在开发Kotlin多平台库。对我来说这很新。

我想知道是否可以从资源文件中获取字符串值? (例如Android本机开发中的strings.xml)

当前,我有一个带有字符串的数据类。但是,这并不令我满意,因为我想支持其他语言,因此不是最佳选择

#include <stdio.h>
#include <math.h>

int main()
{
    int n,m;
    double sum = 0;
    printf("Enter n:\n");
    scanf_s("%d",&n);

    printf("Enter m:\n");
    scanf_s("%d", &m);

    for (int i = -10; i <= m; i++)
    {
        for (int j = 1; j <= n; j++)
        {
            sum += (pow((i + j), 3) / pow(j,2) );
        }
    }
    printf_s("%f",sum);
}

预先感谢您的帮助

0 个答案:

没有答案