标题:求球的体积,第七个有错误,可是有点不理解,希望能得到详细的帮助
只看楼主
魑魅
Rank: 1
等 级:新手上路
帖 子:77
专家分:9
注 册:2016-9-18
结帖率:85.71%
已结贴  问题点数:20 回复次数:1 
求球的体积,第七个有错误,可是有点不理解,希望能得到详细的帮助
#include <stdio.h>
#include <stdlib.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char *argv[]) {
    int r,V;
    scanf("r",&r);
    V=4/3* PI*r*r*r;
    printf("半径为%d的球的体积位%d",V);
    return 0;
}
搜索更多相关主题的帖子: include system return 
2016-09-21 17:47
grmmylbs
Rank: 14Rank: 14Rank: 14Rank: 14
等 级:贵宾
威 望:54
帖 子:1409
专家分:5845
注 册:2016-2-14
得分:20 
程序代码:
#include <stdio.h>
#include <stdlib.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */
#define PI 3
int main(int argc, char *argv[]) {
    int r, V;
    scanf("%d", &r);            //scanf同printf,用%d获取整数
    V = 4 / 3 * PI*r*r*r;            //PI没定义
    printf("半径为%d的球的体积位%d", r,V);//printf的两个%d要对应两个参数
    return 0;
}
2016-09-21 17:56



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




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

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