gpt4 book ai didi

将字符串与变量类型进行比较

转载 作者:太空宇宙 更新时间:2023-11-04 04:24:46 25 4
gpt4 key购买 nike

你好,我需要一些帮助,我的程序的这一部分是获取一个输入字符串,如 2x³+2y² 并将其分成 2 个数组 termos=terms 和 exp=exponential,但是我似乎无法让它工作

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

int main()
{
char poly[50];
int termos[10];
int exp[10];
int contt=0, conte=0, i=0;
char var1, var2, var3;

printf("Introduza o polinómio\n");
scanf("%s", &poly);

for(i=0; i<50; i++)
{
if(poly[i-1]==char && poly[i]==int && poly[i-1]!='+')
{
exp[conte]=poly[i];
conte++;
}

if(poly[i]==int)
{
termos[contt]=poly[i];
contt++;
}

if(poly[i]=='x')
var1=poly[i];
if(poly[i]=='y')
var2=poly[i];
if(poly[i]=='z')
var3=poly[i];
}

最佳答案

根本不可能,里面没有运行时类型信息.也许你应该阅读 The XY Problem稍后再问另一个问题。

关于将字符串与变量类型进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42838521/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com