当前位置:知之问问>百科知识>C语言报错 C:\Users\Administrator\Desktop\1.c\122102.c In function `main':

C语言报错 C:\Users\Administrator\Desktop\1.c\122102.c In function `main':

2023-03-23 02:34:19 编辑:join 浏览量:651

C语言报错 C:\Users\Administrator\Desktop\1.c\122102.c In function `main':

你的程序错误,是在

cout << “Enter the temperature in Celsius:”;

cout << “Fahrenheit value is:”;中用了中文状态下的双引号。

#include <cstdio>

#include <cstdlib>

#include <iostream>

using namespace std;

int main(int nNumberofArgs, char* pszArgs[])

{

// enter the temperature in Celsius

int celsius;

cout << "Enter the temperature in Celsius:";

cin >> celsius;

// calculate conversion factor for Celsius

// to Fahrenheit

int factor;

factor = 212 - 32;

// use conversion factor to convert Celsius

// into Fahrenheit values

int fahrenheit;

fahrenheit = factor * celsius/100 + 32;

// output the results (followed by a NewLine)

cout << "Fahrenheit value is:";

cout << fahrenheit << endl;

// wait until user is ready before terminating program

// to allow the user to see the program results

system("PAUSE"友孙);

return 0;

}

以上程序正确,可以运行。

如果还不行,那就是编译器的问题。建议:用vc2008,c-free或vc2010.微软已停止橘指对vc6.0进行更新了。(开始不习惯很正常,成为高手后会喜欢例圆告配如vc2010的)。

标签:报错,C语言,Users

版权声明:文章由 知之问问 整理收集,来源于互联网或者用户投稿,如有侵权,请联系我们,我们会立即处理。如转载请保留本文链接:https://www.zhzhwenwen.com/article/22203.html
热门文章