//华为编程:筷子,找到第一个单对的筷子#include #define max 37int
main(){ int n,i,j; int a[max]; int flag=0; int error=-1; scanf("%d",&n);
if(n>max) { printf("...
分类:
其他好文 时间:
2014-07-22 23:12:15
阅读次数:
325
public class Mul { public static void
main(String[] args) { // 第一种方法 for (int i = 1; i <= 9; i++) { for (int j = 1;
j <= 9...
分类:
其他好文 时间:
2014-07-22 23:10:55
阅读次数:
270
流程控制顺序执行流程条件分支流程if(布尔表达式) {}if(布尔表达式) {} else{}
if(表达式1){}else if(表达式2){}else if...else{}switch(int型表达式或变量) // byte short int
char string(1.7之后){ ...
分类:
编程语言 时间:
2014-07-22 23:10:35
阅读次数:
353
DescriptionN个气球排成一排,从左到右依次编号为1,2,3....N.每次给定2个整数a
b(a 2 #include 3 #define maxn 300000 4 class Node{ 5 public: 6 int l,r; 7
__int64 add;//附加...
分类:
其他好文 时间:
2014-07-22 23:10:14
阅读次数:
295
题目: 如数: 1 1 2 3 5 8 13 21 34 55 ......序号: 0 1 2
3 4 5 6 7 89 ...... 由用户输入序号,输出对应的数值。效果:实现代码:#include int bian(int num);//static
int shu[100]={1,1};int...
分类:
其他好文 时间:
2014-07-22 23:10:13
阅读次数:
353
效果图:实现代码:/************************//* 简单的时间显示
*//**********************/#include #include /*使用sleep()函数用的头文件*/#include int
main(){ int second...
分类:
其他好文 时间:
2014-07-22 23:09:54
阅读次数:
290
变量 存储空间 存储数据强类型: 变量的类型和变量中数据类型必须一致定义变量: 变量类型
变量名; int a;为变量赋值: 变量名=变量值 a = 10; int a = 10; ...
分类:
编程语言 时间:
2014-07-22 23:09:53
阅读次数:
305
0. 前言
c++默认赋值构造函数的返回值是引用类型,c++赋值运算符=的本意是返回左值的引用,我们重写赋值构造函数的时候,返回值是否应该设为引用类型呢?
按照《Effective C++》中第10条,最好是设为引用类型。 本文,通过实验来表述返回值是否为引用类型的区别。1. 内置类型 int...
分类:
编程语言 时间:
2014-07-22 23:08:15
阅读次数:
400
/** * Definition for binary tree * struct
TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) :
val(x), left(...
分类:
其他好文 时间:
2014-07-22 23:07:34
阅读次数:
312
class Work { [DllImport("user32.dll")] static
extern void mouse_event(MouseEventFlag flags, int dx, int dy, uint data, UIntPtr
extr...
分类:
其他好文 时间:
2014-07-22 23:06:55
阅读次数:
347