摘要:
注册Github账号 首先打开Github的主页(https://github.com/),点击右上角的sign up进行注册 填写待注册账户的基本信息,点击Create account 进行邮箱验证后,注册即为成功 登录Github账号 在如下页面进行登录,如果网页没有跳转到登录页面,可在Gith 阅读全文
摘要:
C #include <stdio.h> int main() { printf("Hello World!"); return 0; } C# using System; using System.Collections.Generic; using System.Linq; using Syst 阅读全文
摘要:
效果上的区别 i++是对变量i递增,但返回原值,++i是对变量i进行递增,并返回终值。 可以用以下代码加以验证: int i = 0; std::cout << i++ << std::endl; i = 0; std::cout << ++i << std::endl; 输出结果: 0 1 性能上 阅读全文