【C++编程】Hello World 代码示例

#include <iostream> #include <stdio.h> /* How to print hello world ~ */ int main(int argc, char** argv) // 第一个参数argc表示参数个数, { // 第二个参数argv是参数组 int a = 0 int b = 0 // 输入: scanf("%d, %d", &a, &b); std::cin >> a >> b; // using namespace std // 输出: printf("Hello World! ** %d %d ** This is C Style\n", a, b); std::cout << "Hello World! This is C++ Style\n" << a << b << std::endl; // using namespace std system("pause"); //system("cls") 清屏 return 0; }
上一篇:爬取天气数据,利用Pyecharts作轮播图


下一篇:[图解]分析模式-01-概述1