
C++
jinchengwu3344
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
LearnCpp-chapter1
title: LearnCpp chapter1top: falsetoc: trueauthor:name: longlongqinavatar: ‘https://cdn.jsdelivr.net/gh/longlongqin/CDN-for-HEXO_BLOG/photo.jpg’url: ‘https://www.longlongqin.top’categories: 学习...原创 2020-04-08 16:54:25 · 391 阅读 · 0 评论 -
TIC TAC TOE 井字游戏
C++ Tic Tac Toe Game Project is developed in C++ for class XI CBSE board students. Read the source code carefully to understand the working of this program.函数checkwin();负责:判断游戏的进度 一方获胜、平局、对局仍在进行中。...翻译 2019-11-07 00:53:02 · 329 阅读 · 0 评论 -
C++:把引用作为参数
#include <iostream>using namespace std;void swap(int &x, int &y);void main(){ int a = 10, b = 20; cout << "交换前的a,b的值分别为:" << a <<","<< b <<...转载 2019-10-17 19:54:50 · 782 阅读 · 0 评论