码迷,mamicode.com
首页 >  
搜索关键字:gets    ( 3597个结果
SDUT OJ 数据结构实验之栈四:括号匹配
#include #include using namespace std; int main() { char a[51],b[51]; int i,top; while(gets(a)!=NULL) { top=-1; for(i=0;a[i]!='\0';i++) { if(a[i]=='{'||a[i]=='['||a[i]=='(') { b[++...
分类:其他好文   时间:2014-12-05 00:50:15    阅读次数:179
OpenGL中两种计算投影矩阵的函数
OpenGL无意间同时看到两种创建投影矩阵的写法,可以说它们完成的是同样的功能,但写法完全不同,可以观摩一下什么叫做异曲同工之妙...第一种:gltMakeShadowMatrix函数是重点 1 // Gets the three coefficients of a plane equation g...
分类:其他好文   时间:2014-12-05 00:35:20    阅读次数:261
[Stanford 2011] segue
From:view 6(00:17)Knowledge Points:1. The segue is the thing that made it so that it moved over to the other MVC.2. How the segue gets set up? To crea...
分类:其他好文   时间:2014-12-03 00:10:51    阅读次数:191
uva--10405Longest Common Subsequence+dp
经典的最长公共子序列问题。 要注意的是题目中的输入会包含空格的情况,所以要用gets实现输入。 代码如下: #include #include #include using namespace std; int dp[1100][1100]; int main() { char str1[1100],str2[1100]; int i,j; whi...
分类:其他好文   时间:2014-12-02 19:17:00    阅读次数:227
scanf gets fgets区别与联系
scanf( )函数和gets( )函数都可用于输入字符串,但在功能上有区别。若想从键盘上输入字符串"hi hello",则应该使用__gets__函数。gets可以接收空格;而scanf遇到空格、回车和Tab键都会认为输入结束,所有它不能接收空格。char string[15]; gets(str...
分类:其他好文   时间:2014-12-01 22:21:14    阅读次数:170
关于Android WindowManager显示悬浮窗的动画效果
要实现WindowManager添加的窗口,实现动画显示,就需要添加如下红色的属性,其他的添加View只要设置其Animations属性也会实现动画,当然自己实现也可,但是能直接用系统的已经实现好的,也很方便。windowManager = (WindowManager) mContext.getS...
分类:移动开发   时间:2014-11-21 01:14:04    阅读次数:394
Problem A: Artificial Intelligence?
#include #include int main() { int n,t,i,k=1,x; double P,U,I,b; char a[1000]; scanf("%d",&n); getchar(); x=n; while(n--) { P=0; U=0; I=0; gets(a); t=strlen(a); for(i=0;i<t;i++)...
分类:其他好文   时间:2014-11-20 23:51:30    阅读次数:261
Jquery 自定义插件写法
(function ($) { $.SmsHelper = $.SmsHelper || {}; $.extend($.SmsHelper, { yzmnum: 60, AjaxUrl: "/AjaxMethod/CommonSMS.ashx?key=GetS...
分类:Web程序   时间:2014-11-17 13:53:03    阅读次数:174
Ruby intro
1. inputprint "What's your first name?"first_name = gets.chomp chomp will delete "\n" from the stringhttp://www.ruby-doc.org/docs/Tutorial/part_02/us....
分类:其他好文   时间:2014-11-16 07:06:55    阅读次数:211
Cf 444C DZY Loves Colors(线段树)
DZY loves colors, and he enjoys painting. On a colorful day, DZY gets a colorful ribbon, which consists of n units (they are numbered from 1 to n from left to right). The color of thei-th unit of...
分类:其他好文   时间:2014-11-15 01:28:29    阅读次数:222
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!