调试的时候,按照例题数据输入,刚输入一行就自动结束了,大佬帮忙看一看

P1957 口算练习题

qew12312 @ 2023-08-28 16:08:07

#include<bits/stdc++.h>
using namespace std;
struct we{
   char a;//存放a,b,c运算符号
   int b,c;输入的两个数据分别转换为int类型b,c
   int d;//存放两个数据的长度
};
 int as(string a){
    int qw=1,er,i,sum;
    er=sizeof(a);
    for(i=er-1;i>=0;i++){
        sum+=a[i]*qw;
        qw*=10;
     }
     return sum;
 }//函数作用将string数据类型转换为int
 int geshu(int we){
    int sum=0;
    if(we==0) return 0;
    for(;we!=0;){
        we/=10;
        sum++;
     }
     return sum;
 }//计算一个int类型的长度

int main(){
    int i,q,t;
    cin>>q;//输入
    we qw[q];
    string w,w1,w2;
    for(i=0;i<q;i++){
        cin>>w;
        if(w[0]!='a'&&w[0]!='b'&&w[0]!='c')//第一个字符如果没有abc,则这一行只用再输入一个字符串
    {
            qw[i].a=qw[i-1].a;cin>>w1;
            qw[i].b=as(w),qw[i].c=as(w1);//向int类型转换,并存入结构体中
            qw[i].d=sizeof(w)+sizeof(w1);}

        else{//如果第一个有ab出,则这一行还用输入两个字符串,
         qw[i].a=w[0];cin>>w1>>w2;
         qw[i].b=as(w1),qw[i].c=as(w2);//向int类型转换,并存入结构体中
         qw[i].d=sizeof(w1)+sizeof(w2);
    }}
        for(i=0;i<q;i++){//输出
            if(qw[i].a=='a') {
                t=qw[i].c+qw[i].b;
                cout<<qw[i].b<<"+"<<qw[i].c<<t<<endl;
                cout<<qw[i].d+2+geshu(t)<<endl;
            }
            if(qw[i].b='c'){
                    t=qw[i].c*qw[i].b;
                cout<<qw[i].b<<"*"<<qw[i].c<<t<<endl;
                cout<<qw[i].d+2+geshu(t)<<endl;
            }
            else {
                    t=qw[i].b-qw[i].c;
                cout<<qw[i].b<<"-"<<qw[i].c<<t<<endl;
                if(t<0) cout<<qw[i].d+3+geshu(fabs(t))<<endl;
                else cout<<qw[i].d+2+geshu(t)<<endl;
            }}

return 0;}

by Max6700 @ 2023-08-28 16:15:09

@qew12312 哇,你做那么复杂干嘛……

int i,q,t;
we qw[1000000];

定义在主函数外面,并且不要用变量开数组

AC
#include <bits/stdc++.h>
using namespace std;

int main()
{
    char his_opt;
    int n;
    cin >> n;
    for (int i = 1; i <= n; i++)
    {
        string T;
        int num1, num2;
        cin >> T;
        if (T[0] >= 'a' && T[0] <= 'c')
        {
            his_opt = T[0];
            cin >> num1 >> num2;
        }
        else
        {
            num1 = atoi(T.c_str());
            cin >> num2;
        }
        char ans[20];
        if (his_opt == 'a') sprintf(ans, "%d+%d=%d", num1, num2, num1 + num2);
        if (his_opt == 'b') sprintf(ans, "%d-%d=%d", num1, num2, num1 - num2);
        if (his_opt == 'c') sprintf(ans, "%d*%d=%d", num1, num2, num1 * num2);
        cout << ans << endl << strlen(ans) << endl;
    }
    return 0;
}

by xutongwei @ 2023-08-28 16:34:52

@Max6700 定义在主函数且用变量没用问题的吧(只要注意别越界)

我更在意 qw 为什么是绿色的,换个名字试试?

qw

by xutongwei @ 2023-08-28 16:50:38

@qew12312 我是小丑,lz只是代码框没使用特定语言的而已……

找到问题了,as函数里sum无初值,(同时a[i]强制类型转化是要减去'0'的值)


by qew12312 @ 2023-08-28 19:32:28

@Max6700 确实搞复杂了,函数sprintf没见过尼,是c的吗,大一才给学c++,哭死


by qew12312 @ 2023-08-28 19:37:22

@qew12312 这个atoi(T.c_str())函数好像是直接将string转换为int类型,我没学诶


by qew12312 @ 2023-08-28 19:41:09

@xutongwei 改了之后还没得尼,程序员好难啊,bug好烦


by Max6700 @ 2023-08-29 09:58:16

@qew12312 zqd,bug是很烦()


|