当前位置: 首页 » 中小学课程 » 少儿编程 » C++基础教学

C++基础教学
编写第一个计算机程序语言,让计算机开口说话

#include

using namespace std;
int main()
{
cout<<"欢迎来您来到程序世界"<
using namespace std;
int main()
{

int a,b,c;
a=3;
b=4;
c=a+b;
cout<<"c="<
using namespace std;
int main()
{

int x,y;
cout<<"input x="; cin>>x;
y=50*x;
cout<<"y="<