码迷,mamicode.com
首页 >  
搜索关键字:main    ( 65088个结果
HDU1720 A+B Coming (16进制加法)
16进制加法1 #include2 int main()3 {4 int a,b;5 while(scanf("%x %x",&a,&b)!=EOF)6 {7 printf("%d\n",a+b); 8 } 9 }
分类:其他好文   时间:2014-04-30 02:19:33    阅读次数:357
IOS开发之copy的问题
copy的目的就是修改副本,修改原始对象和副本时不会产生干扰。 定义一个不可变属性A,再定义一个可变属性B。用B做添加删除等操作后再将B赋值给A时,有些人习惯用A = B;其实这样是不安全的。 假设有下面的一段代码: int main(){ NSMutableString *strM = [...
分类:移动开发   时间:2014-04-30 01:58:00    阅读次数:561
【转载】 free(p)后指针问题
转载自:http://blog.csdn.net/onestep365/article/details/1897626#include #include #include int main(){ char *str = (char *)malloc(100); strcpy(str, "hello"...
分类:其他好文   时间:2014-04-30 01:51:48    阅读次数:427
HDU1719 Friend (数学推导)
friend numbers = 2^x + 3^y -1 1 #include 2 int main() 3 { 4 __int64 a; 5 while(scanf("%I64d",&a)!=EOF) 6 { 7 if(!a) 8 { 9...
分类:其他好文   时间:2014-04-30 01:43:36    阅读次数:322
工厂模式
public class Factory2 { /** * @param args 工厂模式 */ public static void main(String[] args) { // TODO Auto-generated method stub Ifactory ifactory =...
分类:其他好文   时间:2014-04-30 00:33:52    阅读次数:504
简单工厂和工厂模式的合并对比代码
public class Factory2 { /** * @param args 工厂模式 */ public static void main(String[] args) { // TODO Auto-generated method stub //工厂模式 Ifactory if...
分类:其他好文   时间:2014-04-30 00:13:13    阅读次数:512
语法的省略不能造成编译器的歧义
package exp { object Main { def main(args: Array[String]): Unit = { B[String].say("hello"); //B[String]后的括号可以省略,编译器知道这不是要用类型B而是要...
分类:其他好文   时间:2014-04-29 22:15:21    阅读次数:500
仿优酷Android客户端图片左右滑动(自动滑动)
最终效果:页面布局main.xml: ...
分类:移动开发   时间:2014-04-28 16:02:48    阅读次数:626
C函数及指针学习3
12345678910111213#include void main(){char *sa="sdhshdh";char *sb="cdehhhhsdssssd";printf("%d , %d \n",strlen(sa),strlen(sb));if(strlen(sa)-strlen(sb)...
分类:其他好文   时间:2014-04-28 15:27:16    阅读次数:473
java第四章编程题(初学篇)
代码: 1 /* 2 test.java 3 */ 4 package test; 5 public class test { 6 public static void main(String args[] ) 7 { 8 CPU ccp= new CPU();...
分类:编程语言   时间:2014-04-28 14:04:45    阅读次数:439
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!