| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 456 人关注过本帖
标题:求指导 到底哪里出错了...
只看楼主 加入收藏
lifeng123456
Rank: 1
来 自:日照
等 级:新手上路
帖 子:14
专家分:1
注 册:2011-6-11
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:14 
求指导 到底哪里出错了...



 #include <stdio.h>
 
 main( )
 {
     int height,length,width,volume,weight;
     
     printf("Enter height of box: ");
     scanf("%d", &height);
     printf("Enter lenght of box: ");
     scanf("%d", &length);
     printf("Enter width of box: ");
     scanf("%d", &width);
     volume = height * length  * width;
     weight = (volume + 165) /166;
     
     printf("Volume (cubic inches);%d\n", volume);
     printf("Dimensional weight (pounds): %d\n",weight);
     
     return 0;
 }
搜索更多相关主题的帖子: return 
2011-06-13 10:56
voidx
Rank: 12Rank: 12Rank: 12
来 自:邯郸
等 级:火箭侠
帖 子:1250
专家分:3538
注 册:2011-4-7
收藏
得分:10 
printf("Dimensional weight (pounds): %d\n"weight);    // 把这个改成英文的 ,

还有,楼主的 Dimensional weight 如果想要小数就把前面的 int 改成 float。(估计这个是废话)
2011-06-13 11:00
lifeng123456
Rank: 1
来 自:日照
等 级:新手上路
帖 子:14
专家分:1
注 册:2011-6-11
收藏
得分:0 
改成英文的还是不行啊

ぐ..oo(..)wǒ们说好de,]_[﹌oo讓時間去證明 (~)~)(~)~)
2011-06-13 11:03
voidx
Rank: 12Rank: 12Rank: 12
来 自:邯郸
等 级:火箭侠
帖 子:1250
专家分:3538
注 册:2011-4-7
收藏
得分:0 
不可能
程序代码:
#include <stdio.h>

main( )
{
     int height,length,width,volume,weight;
     
     printf("Enter height of box: ");
     scanf("%d", &height);
     printf("Enter lenght of box: ");
     scanf("%d", &length);
     printf("Enter width of box: ");
     scanf("%d", &width);
     volume = height * length  * width;
     weight = (volume + 165) /166;
     
     printf("Volume (cubic inches);%d\n", volume);
     printf("Dimensional weight (pounds): %d\n", weight);
     
     return 0;
}


你 copy 上面的代码试试
2011-06-13 11:06
bccn_2012
Rank: 6Rank: 6
等 级:侠之大者
帖 子:158
专家分:447
注 册:2011-5-14
收藏
得分:5 
回复 3楼 lifeng123456
程序代码:
int height,length,width,volume,weight;
      
      printf("Enter height of box: ");
      scanf("%d", &height);
      printf("Enter lenght of box: ");
      scanf("%d", &length);
      printf("Enter width of box: ");
      scanf("%d", &width);
      volume = height * length  * width;
      weight = (volume + 165) /166;
      
      printf("Volume (cubic inches);%d\n", volume);//第一个分号改成英文的分号
      printf("Dimensional weight (pounds): %d\n",weight);//逗号改成英文的逗号
      
      return 0;
2011-06-13 11:07
烟雾中的迷茫
Rank: 9Rank: 9Rank: 9
等 级:蜘蛛侠
帖 子:621
专家分:1069
注 册:2011-2-9
收藏
得分:0 
改成英文逗号应该没错啊
2011-06-13 11:29
韩54521风
Rank: 4
等 级:业余侠客
帖 子:75
专家分:212
注 册:2011-6-11
收藏
得分:5 
  4楼的程序就可以运行,跟你的区别,也就是你的符号,可能不是英文的吧,尽量要用英文状态下,写程序
#include <stdio.h>

main( )
{
     int height,length,width,volume,weight;
     
     printf("Enter height of box: ");
     scanf("%d", &height);
     printf("Enter lenght of box: ");
     scanf("%d", &length);
     printf("Enter width of box: ");
     scanf("%d", &width);
     volume = height * length  * width;
     weight = (volume + 165) /166;
     
     printf("Volume (cubic inches);%d\n", volume);
     printf("Dimensional weight (pounds): %d\n",weight);
     
     return 0;
}


#include <stdio.h>

main( )
{
     int height,length,width,volume,weight;
     
     printf("Enter height of box: ");
     scanf("%d", &height);
     printf("Enter lenght of box: ");
     scanf("%d", &length);
     printf("Enter width of box: ");
     scanf("%d", &width);
     volume = height * length  * width;
     weight = (volume + 165) /166;
     
     printf("Volume (cubic inches);%d\n", volume);
     printf("Dimensional weight (pounds): %d\n", weight);
     
     return 0;
}


2011-06-13 11:32
lifeng123456
Rank: 1
来 自:日照
等 级:新手上路
帖 子:14
专家分:1
注 册:2011-6-11
收藏
得分:0 
嗯嗯,呵呵,弄好了

ぐ..oo(..)wǒ们说好de,]_[﹌oo讓時間去證明 (~)~)(~)~)
2011-06-13 11:36
voidx
Rank: 12Rank: 12Rank: 12
来 自:邯郸
等 级:火箭侠
帖 子:1250
专家分:3538
注 册:2011-4-7
收藏
得分:0 
切~差点被你丫的糊弄了
2011-06-13 11:37
木偶然
Rank: 2
等 级:论坛游民
帖 子:29
专家分:22
注 册:2011-6-12
收藏
得分:0 
呵呵。。。
2011-06-13 11:42
快速回复:求指导 到底哪里出错了...
数据加载中...
 
   



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

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