C++ C# python 中输入输出函数对比

C++

cin>>"nihao";
cout<<"nihao"<<endl;

C#

System.Console.ReadLine()
System.Console.WriteLine("nihao")

python

input("nihao")
print("nihao")

  

原文地址:https://www.cnblogs.com/fuhang/p/8781845.html