码迷,mamicode.com
首页 >  
搜索关键字:octal    ( 78个结果
Unix删除当前目录可执行文件
On GNU versions of find you can use -executable:find . -type f -executable -printFor BSD versions of find, you can use -perm with + and an octal mask:...
分类:其他好文   时间:2014-10-27 12:42:58    阅读次数:231
Poj1131-Octal Fractions
Octal FractionsTime Limit:1000MSMemory Limit:10000KTotal Submissions:6669Accepted:3641DescriptionFractions in octal (base 8) notation can be expressed...
分类:其他好文   时间:2014-10-15 09:49:40    阅读次数:219
Linux -- chmod
CHMOD(1) User Commands CHMOD(1)NAME chmod - change file mode bitsSYNOPSIS chmod [OPTION]... MODE[,MODE]... FILE... chmod [OPTION]... OCTAL-MODE FILE.....
分类:系统相关   时间:2014-09-03 23:58:17    阅读次数:651
C语言八进制和十六进制数
一 赋值 int dex = 100;// 默认十进制 int oct = 0144;// 八进制,以0开始 int hex = 0x64;// 十六进制,以0x开始 二 输出 void show(int x) { printf("dec = %d; octal = %o; hex = %x\n",x,x,x); printf("dec = %d; octal = %#o; ...
分类:编程语言   时间:2014-09-03 13:04:16    阅读次数:210
POJ Octal Fractions(JAVA水过)
题目链接:CLICK HERE~ 虽然java一下模拟水过,但是我看到别人的一段神奇代码,贴出和大家共享。 import java.math.*; import java.util.*; class Main{ public static void main(String args[]){ Scanner cin = new Scanner(System.in); BigDecim...
分类:编程语言   时间:2014-08-09 21:33:19    阅读次数:274
【ThinkingInC++】2、输入输出流
/** *功能:输入输出流 *时间:2014年8月8日07:37:35 *作者:cutter_point */ #include using namespace std; int main() { cout<<"a number in decimal:"<<dec<<15<<endl; //十进制输出 cout<<"in octal:"<<oct<<15<<endl; ...
分类:编程语言   时间:2014-08-08 08:30:05    阅读次数:230
2014年7月
textField:文本框,文本域。undock:移除。statistics:统计。config:配置。model:模型。auth:认证。decimal:十进制。hexadecimal:十六进制。octal:八进制。binary:二进制。warning=caution:警告。epsilon:极小值。...
分类:其他好文   时间:2014-08-02 05:01:35    阅读次数:248
Python中的不同进制的语法和转换
不同进制的书写方式 八进制(Octal) 0o377十六进制(Hex) 0xFF二进制(Binary) 0b11111111 不同进制之间的转换 python提供了三个内置的函数,可以用来在不同进制间做转换。 >>> oct(255), hex(255), bin(255) ('0o377', '0xff', '0b11111111') 还可以使用int函数,把字符串转成数值 >...
分类:编程语言   时间:2014-07-08 20:53:09    阅读次数:195
78条   上一页 1 ... 6 7 8
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!