码迷,mamicode.com
首页 >  
搜索关键字:input raw_input    ( 33491个结果
质因数的求法
质因数分解 /* 求质因数 */ #include #include int main() { int n,a=2; printf("please input n:"); scanf("%d",&n); if(n<=1) { printf("input error!\n"); return -1; } while(a*a < n) { while(n%a==0) ...
分类:其他好文   时间:2014-05-26 05:50:40    阅读次数:279
java:I/O流
I/O是input/output的缩写,即输入输出端口。从 文件、键盘、网络 等输入到java程序,再从java程序输出到 文件、显示器、网络等分类:1、输入流 和 输出流2、字节流 和 字符流3、节点流 和 处理流核心方法:read、write字节流例子:文件读取//导入io包import jav...
分类:编程语言   时间:2014-05-26 02:16:11    阅读次数:313
表达式计算(re运用)
import reex=raw_input()num="1234567890"a=re.findall("\d+",ex)b=re.findall("[+-]",ex)l=[]if len(a)==len(b): for i in range(len(a)): l.append(...
分类:其他好文   时间:2014-05-26 01:47:32    阅读次数:296
四、GPIO
参考自linux-2.6.32.61\Documentation\一、简介GPIO全称是General Purpose Input/Output,其关联SOC上的一个管脚。平台会分配相应的GPIO和外设关联,诸如audio codec外设,GPIO和平台强相关。GPIO可由平台配置输入输出,输出即可...
分类:其他好文   时间:2014-05-25 23:25:57    阅读次数:352
汇编一点点提高3——键盘输入8位二进制数,存入NUM单元,并在屏幕上显示对应的16进制数
此程序要注意一下几点:1.dos1号功能——带回显的键盘输入,自动存入al2.dos7号功能——不带回显的键盘输入,自动存入al,若要在屏幕中显示要调用DOS2号功能3.将输入的多个二进制数转换为ASCII码input: mov ah,1 int 21h add ...
分类:其他好文   时间:2014-05-25 19:48:43    阅读次数:257
modelsim使用function和display
【步骤1】在modelsim中输入文件内容如下module tryfact; function[31:0]factorial; //此处定义函数,[31:0]是返回值的类型或范围,factorial是函数名 input[3:0]operand; //端口说明语句 reg...
分类:其他好文   时间:2014-05-25 03:48:34    阅读次数:303
每日算法之十五:threesumClosset
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input would have exact...
分类:其他好文   时间:2014-05-24 20:43:37    阅读次数:341
[Wikioi 1294]全排列---两种不同的解法(复习)
题目描述 Description 给出一个n, 请输出n的所有全排列 输入描述 Input Description 读入仅一个整数n   (1 输出描述 Output Description 一共n!行,每行n个用空格隔开的数,表示n的一个全排列。并且按全排列的字典序输出。 样例输入 Sample Input ...
分类:其他好文   时间:2014-05-24 19:25:32    阅读次数:254
LeetCode: Anagrams [048]
【题目】 Given an array of strings, return all groups of strings that are anagrams. Note: All inputs will be in lower-case. For example: Input:  ["tea","and","ate","eat","den"] Output: ["tea","ate","eat"] 【题意】 anagrams指的是颠倒字母顺序构成的单词,以tea为例,则与它an...
分类:其他好文   时间:2014-05-24 18:36:01    阅读次数:317
iptables防火墙配置详解
iptables简介iptables是基于内核的防火墙,功能非常强大,iptables内置了filter,nat和mangle三张表。filter负责过滤数据包,包括的规则链有,input,output和forward;nat则涉及到网络地址转换,包括的规则链有,prerouting,postrouting和output;mangle表则主要应用在修改数..
分类:其他好文   时间:2014-05-24 15:31:32    阅读次数:293
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!