标题:数组结果运作不正确
只看楼主
fangenbo2009
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2014-11-19
结帖率:0
已结贴  问题点数:20 回复次数:1 
数组结果运作不正确
#include "stdafx.h"
#include "stdio.h"

int _tmain(int argc, _TCHAR* argv[])
{
    int i,A[10],S,s1,s2;
    s1=0;
    s2=0;
    for(i=0;i<10;i++){
        scanf("%d",&A[i]);
        if(A[i]%2==0) s1=s1+A[i];
        if(A[i]%3==0) s2=s2+A[i];
   
    }
    S=s1-s2;
    printf("%d",&S);
return 0;
}
搜索更多相关主题的帖子: include 
2014-11-19 22:04
chen5656de
Rank: 2
等 级:论坛游民
帖 子:21
专家分:62
注 册:2014-4-14
得分:20 
程序代码:
#include "stdafx.h"
#include "stdio.h"

int _tmain(int argc, _TCHAR* argv[])
{
    int i,A[10],S,s1,s2;
    s1=0;
    s2=0;
    for(i=0;i<10;i++){
        scanf("%d",&A[i]);
        if(A[i]%2==0) s1=s1+A[i];
        if(A[i]%3==0) s2=s2+A[i];
    
    }
    S=s1-s2;
    printf("%d",&S); //把&去掉
return 0;
}
2014-11-19 22:31



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-438891-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.542976 second(s), 9 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved