码迷,mamicode.com
首页 >  
搜索关键字:gets    ( 3597个结果
c语言中重要函数
gets函数,从标准输入读取一行文本,一行输入由一串字符组成,以一个换行符结尾;gets函数丢弃换行符,并在该行的末尾存储一个NUL字符(类似‘\0’), 然后返回一个非NULL值。当gets函数被调用但事实上不存在输入行时,它返回NULL值。注意点:给字符串分配空间加NUL的空间;格式字符串包含格...
分类:编程语言   时间:2014-05-26 15:45:49    阅读次数:330
01-03-02-2【Nhibernate (版本3.3.1.4000) 出入江湖】CRUP操作-Save方法的一些问题
NHibernate--Save方法: CustomerService.cs 1 public void Save(Customer customer) 2 { 3 ISession session = _sessionManager.GetS...
分类:系统相关   时间:2014-05-26 11:02:16    阅读次数:319
HDU 3910 Liang Guo Sha
HDU 3910 Liang Guo Sha 题目大意: If both of them choose “Sha”, then Alice gets A points, and Bob loses A points; if both of them choose “Shan”, then Alice gets B points, and Bob loses B points; otherwise, Bob gets C points, and Alice loses C points. 给定A B ...
分类:其他好文   时间:2014-05-22 06:22:40    阅读次数:281
ruby中特殊的全局变量
全局变量:由$开头,可以在程序的任何位置访问到。在初始化前,全局变量有一个特殊的值nil。这里列出了一些以$打头并跟单个字符的特殊变量,包括主要的系统变量以及它们的含义:$! 最近一次的错误信息 $@ 错误产生的位置 $_ gets最近读的字符串 $. 解释器最近读的行数(line nu...
分类:其他好文   时间:2014-05-21 04:30:24    阅读次数:289
编程题:函数gets()与scanf()的区别。
编程题:函数gets()与scanf()的区别。#include<stdio.h>voidmain(){charstr1[20],str2[20];gets(str1);scanf("%s",str2);printf("str1:%s\n",str1);printf("str2:%s\n",str2);}
分类:其他好文   时间:2014-05-21 01:21:45    阅读次数:262
编程题:用二维字符串数组实现。从键盘输入三个学生姓名,并输出。
编程题:用二维字符串数组实现。从键盘输入三个学生姓名,并输出。#include<stdio.h>#include<string.h>voidmain(){charname[3][30];inti;for(i=0;i<3;i++) gets(name[i]);/*name[i]是一个一维字符数组*/for(i=0;i<3;i++) printf("%s\n",name[i]);}
分类:其他好文   时间:2014-05-21 00:53:21    阅读次数:354
编程题:对结构体变量中成员的引用展示。
编程题:对结构体变量中成员的引用展示。#include<stdio.h>voidmain(){structperson{charname[20];charsex;structdate {intyear; intmonth; intday; }birthday; floatheight;}per;printf("Enterthename:");gets(per.name);per.sex=‘M‘;per.birthday.year=2013;per.birthd..
分类:其他好文   时间:2014-05-20 18:41:16    阅读次数:360
编程题:函数strlen()的使用
编程题:函数strlen()的使用#include<stdio.h>#include<string.h>voidmain(){inti;charstr1[20],str2[20];gets(str1);gets(str2);for(i=0;str2[i]!=‘\0‘;i++); printf("%s:%d\n",str1,strlen(str1));printf("%s:%d\n",str2,i); printf("%s:%d\n","IlikeC",strlen..
分类:其他好文   时间:2014-05-20 17:22:32    阅读次数:287
jquery val() and text().
.val()works on input elements (or any element with a value attribute?) and.text()will not work on input elements..val()gets the value of the input ele...
分类:Web程序   时间:2014-05-19 12:14:34    阅读次数:382
POJ 2886 Who Gets the Most Candies(线段树+约瑟夫环)
题目链接:POJ 2886 Who Gets the Most Candies【题目】N个孩子顺时针坐成一个圆圈,从1~N编号,每个孩子手中有一张标有非零整数的卡片。第K个孩子先出圈,如果他手中卡片上的数字A>0,下一个出圈的是他左手边第A个孩子。A0, 因为这个人出去了,那么后面的人的编号都会先减...
分类:其他好文   时间:2014-05-19 10:25:12    阅读次数:193
3597条   上一页 1 ... 357 358 359 360 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!