一、数据的输入与输出 1.stdio.h中包含的函数: getchar(输入字符) gets(输入字符串) printf(格式输出) putchar(输出字符) puts(输出字符串) scanf(格式输入) flushall(刷新缓冲区) 等等 2.flushall(); ...
分类:
编程语言 时间:
2015-02-04 09:23:16
阅读次数:
233
使用以下时应当在头文件中加入string.h getch()为当你键入任何一个值时,返回但是并不显示,立马编译结束,返回的是asc码 getchar();当你键入回车之后才算是输入结束,并且可以用putchar()显示第一个字符,返回的是asc码 puts()将一个字符串(仅一个)输出到终端,可以包...
分类:
编程语言 时间:
2015-02-02 19:32:09
阅读次数:
163
用sed删除空行我的代码如下:class Song def initialize(name) @name = name end def tell puts @name endendclass ZhouSong < Song def initialize(name,artist) super(n...
分类:
其他好文 时间:
2015-01-29 19:04:12
阅读次数:
148
1. C\C++中用法
/* strftime example */
#include /* puts */
#include /* time_t, struct tm, time, localtime, strftime */
int main ()
{
time_t rawtime;
struct tm * timeinfo;
char buffer [8...
分类:
编程语言 时间:
2015-01-21 22:29:30
阅读次数:
257
需求:股民买卖股票初步代码:# -*- encoding: utf-8 -*-#股票1class Stock1 def buy puts '股票1买入' end def sell puts '股票1卖出' endend#股票2class S...
分类:
其他好文 时间:
2015-01-14 22:43:20
阅读次数:
177
需求:学生抄题目,做题目初始代码# -*- encoding: utf-8 -*-#学生甲的试卷类class TestPaperA def question1 puts '杨过得到,后来给了郭靖,炼成倚天剑,屠龙刀的玄铁可能是[] a.球墨铸铁 b.马口铁 c.高速合金...
分类:
其他好文 时间:
2015-01-13 23:14:41
阅读次数:
250
1798. Alice and Bob
Description
Bob is very famous because he likes to play games. Today he puts a chessboard in the desktop, and plays a game with Alice. The size of the chessboard is...
分类:
其他好文 时间:
2015-01-12 17:42:34
阅读次数:
174
一、定义: hsh=Hash.new hsh=Hash[1=>”a”,2=>”b”] hsh={“1”=>”a”,2=>”b”} 支持任意对象为key,习惯使用Symbol 二、常用方法 #!/usr/bin/ruby def printResult(args) print args puts ""...
分类:
其他好文 时间:
2015-01-12 06:48:43
阅读次数:
141
这个是用来验证码识别的需要先装一下这些brew install Tesseractbrew install imagemagickgem install rmagick测试代码require 'rtesseract'image = RTesseract.new("./4.jpg")puts imag...
分类:
其他好文 时间:
2015-01-11 19:07:52
阅读次数:
241
一、概述 Range在ruby中表示区间。表示方法“..”和“…”。前者表示闭合区间: Range中的元素可以是数字、字符串和自定义的区间对象 (1..10).each{|i| puts i } #1 2 3 4 5 6 7 8 9 10 (1…10).each{|i| puts i} #1 2 3 4 5 6 7 8 9 1.1常用方法...
分类:
其他好文 时间:
2015-01-11 17:52:09
阅读次数:
157