码迷,mamicode.com
首页 >  
搜索关键字:if while    ( 28479个结果
ADS1.2使用
ADS编译错误Error : A1163E: Unknown opcodeARM汇编指令不支持顶格写,否则不能识别,指令前加上空格即可。使用for(;;;)//死循环,编译报错如下,说是该语句有错。换成while(1)就不再报错了。请问为什么?Error : (Serious) C2291E: e....
分类:其他好文   时间:2014-06-19 09:00:07    阅读次数:269
图结构练习——判断给定图是否存在合法拓扑序列(sdutoj)
#include#includeint d[15],map[15][15],vis[15];int main(){ int i,j,k,f,n,m,u,v; while(~scanf("%d%d",&n,&m)) { memset(d,0,sizeof(d)); memset(map,0,sizeo...
分类:其他好文   时间:2014-06-18 22:56:11    阅读次数:252
构建ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的后台管理系统(37)-文章发布系统④-百万级数据和千万级数据简单测试
我想测试EF在一百万条数据下的显示时间!这分数据应该有很多同学想要,看看EF的性能!服务器现在来向SQL2008R2插入1000000条数据吧declare @i int;set @i=0;while @i'+CONVERT(varchar,(@Rows*(@PageNo-1)))+' )'endp...
分类:Web程序   时间:2014-06-18 21:21:36    阅读次数:302
求1+2+3+...+n的值,要求不能使用乘除法,for、while、if、else、switch、case、等关键字及条件判断语句(JAVA)
采用递归和三目表达式注意红色字体一定不能写成n-- 1 package com.hunag; 2 3 public class Sum { 4 5 static int sum; 6 public static int isum(int n) 7 { 8 ...
分类:编程语言   时间:2014-06-16 23:49:28    阅读次数:456
一个简单而经典的RTX51 Tiny应用实例
在RTX51 Tiny应用中,我们不需要编写main函数,因为main函数已经由RTX51 Tiny内核实现了。一个基于RTX51 Tiny的应用程序,都是从任务0(task0)开始运行的。上面的代码中,除了task0之外,其他的任务都是一个while(1)死循环。task0的作用是负责系统的初始化,上述代码在这个任务中首先关闭了四个LED,然后通过os_create_task(id)函数创建了五个任务,task0的最后一个步骤是通过os_delete_task(id)函数删除自身,使task0退出任务链表...
分类:其他好文   时间:2014-06-16 20:51:57    阅读次数:353
UVA 10127 - Ones(数论)
UVA 10127 - Ones 题目链接 题意:求出多少个1组成的数字能整除n 思路:一位位去取模,记录答案即可 代码: #include #include int n; int main() { while (~scanf("%d", &n)) { int ans = 1; int now = 1; while (now) { ...
分类:其他好文   时间:2014-06-15 15:10:41    阅读次数:151
Swift流程控制
使用if和switch来创建流程条件,使用for-in、for、while、do-while来创建循环。条件和变量外面的小括号时可选的,但是循环体外面的大括号时必选的。如下代码1let individualScore=[75,43,103,87,12]2var teamScore=0;3forsco...
分类:其他好文   时间:2014-06-15 13:54:00    阅读次数:210
2014 Zanotti is popular by womens star
Hathaway As Catwoman wear her Giuseppe Zanotti for sale required a while removed from her hectic agenda to mingle together with her fellow nominees in...
分类:其他好文   时间:2014-06-14 20:07:50    阅读次数:213
Bootcamp: An error occurred while partitioning the disk
原因:在macbook pro retina上安装win7双系统错误:在使用Bootcamp分区的时候出现错误:An error occurred while partitioning the disk解决方法: - 打开Disk Utility (磁盘工具) - 在左侧选择当前使用的硬盘,然后.....
分类:其他好文   时间:2014-06-14 20:05:48    阅读次数:456
java学习---线程
1、继承Thread类,实现run方法 class TestThread { public static void main(String[] args) { Thread1 t1=new Thread1(); t1.start(); int index=0; while(true) { if(index++==500) { t1.stopThread...
分类:编程语言   时间:2014-06-14 10:25:58    阅读次数:317
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!