首页 > 电脑

请问,我的程序代码哪里错了?

更新时间2019-08-12 12:55:40

#include<bits/stdc++.h>

using namespace std;

int main()

{

    int a,b,c;

    scanf("%d%d",&a,&b);

    c = a + b;

    if (c > 0 && c >= 1000000)

    printf("%d,%03d,%03d",c/1000000,c/1000%1000,c%1000);

    if (c < 0 && abs(c) >= 100000)

    printf("%d,%03d",c/1000,abs(c)%1000);

    if (c > 0 && c >= 1000 && c < 1000000)

    printf("%d,%03d",c/1000,c%1000);

    if (c < 0 && abs(c) >= 1000 && abs(c) <= 100000)

    printf("%d,%03d",c/1000,abs(c)%1000);

    if (c > 0 && c < 1000)

    printf("%d",c);

    if (c < 0 && abs(c) < 1000)

printf("%d",c);

if (c == 0)

printf("%d",c);

}


你的程序能够编译:

请问,我的程序代码哪里错了?

也能运行,如:

请问,我的程序代码哪里错了?

你指的是算法的实现吗?

你是可以自己检查的

程序看上去没有问题,也可以编译运行,问题是你的具体要求呢?

上一篇:旧主版更换处理器建议

下一篇:excle自带的二维码功能汉字不能生成二维码