码迷,mamicode.com
首页 >  
搜索关键字:warnings    ( 1040个结果
猜数字游戏
#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>#include <stdlib.h>#include <time.h> void Game(){ int toGuess = rand() % 100 + 1; while (1){ printf(" ...
分类:其他好文   时间:2020-03-23 20:47:15    阅读次数:79
100-200以内的素数(今天敲的)
#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>#include <stdlib.h> int main()//100-200以内的素数{ int count = 0; int i, j; _Bool flag = 1; for (i = 100; ...
分类:其他好文   时间:2020-03-23 20:11:59    阅读次数:67
JavaSE---java.util---ArrayList
1、查找 1.1、contains() public boolean contains(Object o) { return indexOf(o) >= 0; } public int indexOf(Object o) { if (o == null) { for (int i = 0; i < ...
分类:编程语言   时间:2020-03-23 15:11:30    阅读次数:61
初级扫雷小程序代码
#pragmaonce#define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>#include<time.h>#defineROW9#defineCOL9#defineEasy_count80#defineROWSROW+2#defineCOLSCOL+2voidInitBoard(cha
分类:微信   时间:2020-03-22 12:27:21    阅读次数:168
单一职责模式
一个类就只做一件事情。 1 #define _CRT_SECURE_NO_WARNINGS 2 #include <iostream> 3 4 using namespace std; 5 6 7 #if 0 8 class Clothes 9 { 10 public: 11 void shoppi ...
分类:其他好文   时间:2020-03-22 11:06:31    阅读次数:70
简单工厂模式
用户提供一个标签,工厂通过一个函数来判断。比如用户提供一个苹果,水果工厂就得根据水果生成器(函数)来创建一个苹果。这些水果的类在外面是已经写好了的。 这个水果生成器直接返回一个水果种类的指针。例子如下。 #define _CRT_SECURE_NO_WARNINGS #include <iostre ...
分类:其他好文   时间:2020-03-22 11:01:50    阅读次数:68
开闭原则
在实际代码中,为提高代码的可复用性(后期不用动),可维护性(后期不用改源代码),通过一个抽象类来定义,借助虚函数来定义不同的继承对象。 #define _CRT_SECURE_NO_WARNINGS #include <iostream> using namespace std; //抽象类 cla ...
分类:其他好文   时间:2020-03-21 16:22:03    阅读次数:60
C++ 指针偏移的理解
//题目:若有程序段int a[5] = { 1, 2, 3, 4, 5 }; int *p = (int *)(&a + 1); printf("%d,%d", *(a + 1), *(p - 1)); 则输出的结果是(),()#define _CRT_SECURE_NO_WARNINGS #in ...
分类:编程语言   时间:2020-03-16 19:13:51    阅读次数:63
BFS(最短路径)—— 迷宫问题
题目:http://www.fjutacm.com/Contest.jsp?cid=862#P2 代码: #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> #include<queue> using namesp ...
分类:其他好文   时间:2020-03-15 18:56:45    阅读次数:64
vue --- 6 errors and 0 warnings potentially fixable with the `--fix` option (eslint)
在创建vue项目中,会选择linter/Formatter,eslint-config-standard "standard"插件代表的是eslint的standard插件都要安装 所以参考一下以下依赖是否安装 eslint babel-eslint eslint-plugin-html eslin ...
分类:其他好文   时间:2020-03-14 21:59:16    阅读次数:378
1040条   上一页 1 ... 9 10 11 12 13 ... 104 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!