标题:求解system("color 0A")怎么用?
取消只看楼主
mujunyixin
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2013-9-13
 问题点数:0 回复次数:2 
求解system("color 0A")怎么用?
#include<stdio.h>
void main()
{      system("color 0A");
    float f,c;
    printf("请输入华氏温度:");
    scanf("%f",&f);
    c=(5.0/9)*(f-32);
    printf("华氏温度%f对应的摄氏温度为%f\n",f,c);
}


运行后出现
--------------------Configuration: 3-1 - Win32 Debug--------------------
Compiling...
3-1.c
D:\学习\3-1.c(3) : warning C4013: 'system' undefined; assuming extern returning int
D:\学习\3-1.c(4) : error C2143: syntax error : missing ';' before 'type'
D:\学习\3-1.c(6) : error C2065: 'f' : undeclared identifier
D:\学习\3-1.c(7) : error C2065: 'c' : undeclared identifier
D:\学习\3-1.c(7) : warning C4244: '=' : conversion from 'double ' to 'int ', possible loss of data
执行 cl.exe 时出错.

3-1.obj - 1 error(s), 0 warning(s)


该怎么解决啊?

[ 本帖最后由 mujunyixin 于 2013-9-13 20:25 编辑 ]
搜索更多相关主题的帖子: system warning include 华氏温度 undefined 
2013-09-13 20:22
mujunyixin
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2013-9-13
得分:0 
回复 4楼 liufashuai
还是不行,
#include<stdio.h>
#include<windows.h>
void main()
{      system("color 0A");
    float f,c;
    printf("请输入华氏温度:");
    scanf("%f",&f);
    c=(5.0/9)*(f-32);
    printf("华氏温度%f对应的摄氏温度为%f\n",f,c);
}

ctrl+F7后出现

Compiling...
shiyan.c
d:\学习\c语言学习\shiyan.c(5) : error C2143: syntax error : missing ';' before 'type'
d:\学习\c语言学习\shiyan.c(7) : error C2065: 'f' : undeclared identifier
d:\学习\c语言学习\shiyan.c(8) : error C2065: 'c' : undeclared identifier
d:\学习\c语言学习\shiyan.c(8) : warning C4244: '=' : conversion from 'double ' to 'int ', possible loss of data
执行 cl.exe 时出错.

shiyan.obj - 1 error(s), 0 warning(s)
2013-09-21 17:49
mujunyixin
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2013-9-13
得分:0 
回复 2楼 TonyDeng
谢谢。我去看下。
2013-09-21 17:50



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




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

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