1 条题解

  • 0
    @ 2023-6-11 12:15:52

    C :

    #include<stdio.h>
    main(){
    	int a,b,m;
    	char c,d;
    	scanf("%d%c%d%c",&a,&c,&b,&d);
    	if(c=='+'&&d=='='){
    		m=a+b;
    	printf("%d\n",m);
    	}
    	
    }
    

    Python :

    
    str1=input()
    a=int(str1[:str1.find("+")])
    b=int(str1[str1.find("+")+1:-1])
    print(a+b)
    
    
    • 1

    信息

    ID
    2123
    时间
    1000ms
    内存
    16MiB
    难度
    10
    标签
    递交数
    1
    已通过
    0
    上传者