摘要: // ConsoleApplication2.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // /*#include "pch.h" #include using namespace std; enum GameResult{WIN,LOSE,TIE,CANCEL}; int main() { GameResult result; enum ... 阅读全文
posted @ 2018-12-17 22:59 Maggieisxin 阅读(215) 评论(0) 推荐(0) 编辑
摘要: //判断是否是回文数 #include"pch.h"#include<iostream>using namespace std;bool systm(unsigned n){ unsigned i = n; unsigned m = 0; while (i>0) { m = m * 10 + i % 阅读全文
posted @ 2018-12-17 08:28 Maggieisxin 阅读(132) 评论(0) 推荐(0) 编辑