使用fedora的c程序出错?

时间:2015-09-16 18:51:13

标签: gcc fedora

[king @ localhost~] $ gcc -oer temp.cpp gcc:错误尝试执行'cc1plus':execvp:没有这样的文件或目录

这是什么错误? 这是什么解决方案..

1 个答案:

答案 0 :(得分:1)

您正在尝试使用C编译器编译C ++文件。您想使用#include <iostream> #include <iomanip> #include <windows.h> using namespace std; int main() { char left, right, up, down; up = 24; down = 25; left = 27; right = 26; cout << setw(10); cout << up; cout << endl; cout << setw(20); Sleep(1000); cout << right; cout << endl; cout << endl; cout << endl; cout << setw(10); Sleep(1000); cout << down; Sleep(1000); cout << left; system("PAUSE"); return 0; } 而不是g++ -oer temp.cpp