1.Hello,World!
#include <iostream> //使用cout,可调用iostream库
using namespace std;
int main() {
cout << "Hello,Wordl!" << endl; //输出 Hello World!
return 0; //结束整个程序
}
#include <cstdio> //使用printf,调用cstdio库
using namespace std;
int main() {
printf("Hello,Wrold!"); //输出"Hello,World!"
return 0; //结束整个程序
}
2.输出第二个整数
/*分析:
输入:只有一行,共三个整数,空格分开
输出:只有一行,一个整数,输出第二个整数即可
样例输入:123 456 789
样例输出:456*/
#include <iostream> //使用cin,cout,调用iostream库
using namespace std;
int main()
{
co