0
点赞
收藏
分享

微信扫一扫

c++ 输入

他说Python 2023-01-13 阅读 146


#include <iostream>

using namespace std;

int main()
{
char name[50];
cout<< "你的名字:";
cin >> name;
cout <<"您是 :"<<name<<endl;
}

你的名字:lg
您是 :lg


举报

相关推荐

0 条评论