码迷,mamicode.com
首页 >  
搜索关键字:ret    ( 30742个结果
提示用户输入一个正整数n,计算1+2+3+…+n的和
/*提示用户输入一个正整数n,计算1+2+3+…+n的和*/#includeintmain(){//1.提示输入printf("请输入一个正整数:\n");//2.接收输入//定义变量保存用户输入的整数intn;scanf("%d",&n);if(n<=0){printf("非法输入\n");ret...
分类:其他好文   时间:2014-05-28 18:26:51    阅读次数:703
LeetCode Spiral Matrix
class Solution { public: vector spiralOrder(vector > &matrix) { vector ret; int cols = 0; ...
分类:其他好文   时间:2014-05-28 14:38:02    阅读次数:236
C 语言 const 关键字
#include int main(void){int i = 1;int j = 100;const int * temp = &i;printf("%d\n",*temp);i = 2;printf("%d\n",*temp);temp = &j;printf("%d\n",*temp);ret...
分类:其他好文   时间:2014-05-26 23:11:42    阅读次数:330
不用遍历 递归算法 求数组中数字的最大值
#include "stdio.h"int ax[] ={1000,5,6,8,9,800,5,200,3,6,5,8,9};int paixu (int n, int ret){ if (n==0) return ret>ax[0]?ret:ax[0]; int ret1= ret>ax[n]? ...
分类:其他好文   时间:2014-05-26 18:41:12    阅读次数:220
动态调用WebService时动态获取返回Class中的属性
直接给代码:var ret = HTTPS.WSHelper.InvokeWebService("WebService URL", "MethodName", object[] args);var type = ret.GetType();var propertyinfo = type.GetPro...
分类:Web程序   时间:2014-05-26 18:21:13    阅读次数:261
同时替换.data与栈中的Cookie突破GS
原理简述替换.data中保存的数值为0x909090,替换栈中的数值为0x909090 xor ebp(所在函数帧的),溢出“正面绕过”GSmain函数特点:距离ret近,而且有三个参数gs过程1,gs原理简述。从.data中取出cookie(cookie_ori),运算之后放入栈中成为cookie...
分类:其他好文   时间:2014-05-26 13:40:36    阅读次数:389
Wargame narnia level 1 (中文攻略)
拿着我们的第0关得到的密码XXXX进入第1关ssh narnia1@narnia.labs.overthewire.orgcat narnia1.c#include int main(){ int (*ret)(); if(getenv("EGG")==NULL){ ...
分类:其他好文   时间:2014-05-25 18:54:06    阅读次数:575
Accelerated C++学习笔记7—<使用顺序容器并分析字符串>
第6章  使用库算法 本章中主要教我们如何使用几个库算法来解决与处理字符串和学生成绩相关的问题。 1、分析字符串 使用一个循环来连接两幅字符图案 for(vector::const_iterator it = bottom.begin(); it != bottom.end(); ++it) ret.push_back(*it); 等价于 ret.insert(ret.end(...
分类:编程语言   时间:2014-05-24 20:24:10    阅读次数:365
不同元素的排列与组合
#include#include#include#include#includeusing namespace std; vector > ret;vector sub;int num = 0;void helper(int* str, int n,int i) ///递归求组合{ if(i ==....
分类:其他好文   时间:2014-05-23 06:42:21    阅读次数:232
一个基于Gsoap 的ONIVF C++ 库
https://github.com/xsmart/onvifcpplib 这个库支持ProfileS 和ProfileG,目前还在开发当中,现在已经支持Event 下面是一个客户端的例子 int _tmain(int argc, _TCHAR* argv[]) { int ret; /* 192.168.1.1 is the NVT, 192.168.1.234 is the N...
分类:编程语言   时间:2014-05-18 05:26:01    阅读次数:384
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!