【第一堂】c++课程

#include <iostream>
#include <string>
using namespace std;
int main()
{
  cout << "hello world"<<endl;
  int a = 1;
  int b = 1;
  int c = a + b;
  cout << c << endl;
  return 0;
}

 

posted on 2024-01-18 17:32  lydstory  阅读(4)  评论(0编辑  收藏  举报

导航