写第一个C语言代码,无法显示Hello Word!
#include <stdio.h>
int main()
{
printf("Hello World" / n);
return 0;
}
无法显示Hello World!
Windows.UI.Xaml.dll!00007FF8B1A398C8: (caller: 00007FF8340D4D0F) ReturnHr(6) tid(3670) 80070057 参数错误。
想在控制台显示Hellow World
你这个cpp是c++语言
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World";
return 0;
}