您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 用C语言写的雅克比迭代法

  2. //f(x)=x^3-x-1=0 ;[1,2] #include #include double p(double x) //二分法计算函数 { double d; d=pow(x,3)-x-1; return(d); } void twopart(double a1,double b1,double e1) //二分法 { double c,f1,f2,f3,n=1; f1=p(a1); f2=p(b1); if(f1*f2>0) {cout<<"无法使用二分法"<e
  3. 所属分类:C

    • 发布日期:2009-06-02
    • 文件大小:366
    • 提供者:chenxialan1989
  1. C++一元二次方程求解程序

  2. C++一元二次方程求解程序 #include #include using namespace std; int main () { while (1) { double x1,x2,a,b,c; cout<<"please type for a,b,c,like 5x2+6y-8=0"<>a>>b&g t;>c; if ((pow(b,2)-4*a*c)<0) cout<<"wrong"<<endl; else {
  3. 所属分类:C

    • 发布日期:2009-07-29
    • 文件大小:476160
    • 提供者:jirounan
  1. c++课程设计(公司人员管理系统)

  2. c++课程设计 #include #include #include #include //全局数据,对象 double ManagerSalary; //经理固定月薪 double SalesManagerSalary; //销售经理固定月薪 double SalesManagerPercent; //销售经理提成% double SalesPercent; //销售人员提成% double WagePerHour; //技术人员小时工资 int ID; //员工标识(要保证唯一)
  3. 所属分类:C

    • 发布日期:2010-01-06
    • 文件大小:205824
    • 提供者:zhangjince1988
  1. C++C++设计新思维

  2. this is a good book to learn the C++.If you are a learner, can get much from it.
  3. 所属分类:C++

    • 发布日期:2010-06-08
    • 文件大小:1048576
    • 提供者:SEU_WANGYU
  1. c#gaojibiancheng

  2. static void gettoken() { token.Remove(0, token.Length); char c = prog[i]; while (c == ' '){ i++; c=prog[i]; } if (c == '+'|| c == '-' || c == '*' || c == '/') { token_t = DILIM; token.Append(c); ++i; } else if (c > '0' && c '0'&& c = prog.Length
  3. 所属分类:C

    • 发布日期:2010-08-02
    • 文件大小:433152
    • 提供者:rivergogo
  1. c#gaojichengxu

  2. static void gettoken() { token.Remove(0, token.Length); char c = prog[i]; while (c == ' '){ i++; c=prog[i]; } if (c == '+'|| c == '-' || c == '*' || c == '/') { token_t = DILIM; token.Append(c); ++i; } else if (c > '0' && c '0'&& c = prog.Length
  3. 所属分类:C

    • 发布日期:2010-08-02
    • 文件大小:234496
    • 提供者:rivergogo
  1. java开发总结知识

  2. java开发过程中的知识总结,值得参考!java javascr ipt c:if c:test都有相关介绍
  3. 所属分类:C

    • 发布日期:2010-08-05
    • 文件大小:559104
    • 提供者:ziyunlong1984
  1. c源程序代码 水仙花数最简单的写法

  2. 初学者专用的c源代码,学c时做的练习 #include int main() { int a,b,c; for(a=1 ; a<10 ; a++) { for(b=0 ; b<10 ; b++) { for(c=0 ; c<10 ; c++) { if(a*100+b*10+c == a*a*a + b*b*b + c*c*c) printf("%d%d%d\n",a,b,c); } } } }
  3. 所属分类:C

    • 发布日期:2010-08-05
    • 文件大小:233
    • 提供者:a86115592
  1. [C#.2010捷径教程]

  2. Visual C#.NET(C#)is relatively easy to learn for anyone familiar with another object-oriented language. Even someone familiar with Visual Basic 6.0,who is looking for an object-oriented language,will find C# easy to pick up.However,though C#,coupled
  3. 所属分类:C#

    • 发布日期:2010-08-05
    • 文件大小:6291456
    • 提供者:slamdunkdp
  1. JSTL标准标签库 <C:out>、<c:set>、<c:remove>和<c:catch>标记 <c:if>、<c:choose>、<c:when>和&

  2. ◎ JSTL的基本概念、安装与配置 ◎ JSTL的通用标记:、、和标记 ◎ 条件处理标记:、、和标记 ◎ 循环标记:和标记
  3. 所属分类:C

    • 发布日期:2010-11-29
    • 文件大小:468992
    • 提供者:yangguang22222
  1. 运用c++编写 山农-范诺 编码

  2. 运用c++编辑山农-范诺编码 ////////////////////////////译码//////////////////////////////////// void unshannong(LTree p){ //输入译码树及待译序列 char c; LTree temp=p; cout<>c; if(c=='1') { if(temp->RC!=0) { temp=temp->RC; if(temp->LC==0 && temp->RC==0) {
  3. 所属分类:C

    • 发布日期:2010-12-10
    • 文件大小:4096
    • 提供者:JINGLINGWEIS
  1. Illustrated C# 2010

  2. Product Descr iption It was while teaching numerous seminars on various programming languages that author Daniel Solis realized the immense power diagrams have in explaining programming language concepts. Most people learn quicker and retain informa
  3. 所属分类:C#

    • 发布日期:2011-01-12
    • 文件大小:6291456
    • 提供者:namhyuk
  1. JSTL C.TLD 中文详解

  2. 文章按照使用的频率分几个小节讲述JSTL常用标签的使用,比如
  3. 所属分类:Java

    • 发布日期:2011-04-01
    • 文件大小:164864
    • 提供者:LarreyLin
  1. C++实现学生成绩统计管理系统

  2. 源代码: #include #include #include #include #define Smax 200 using namespace std; struct student { string num; string name; float eng; float math; float clang;//定义c++ float gete(){return eng;} float getm(){return math;} float getcl(){return clang;} str
  3. 所属分类:C/C++

    • 发布日期:2011-05-12
    • 文件大小:102400
    • 提供者:wcf319
  1. 经典算法(C语言)

  2. 1.汉若塔 2 2.费式数列 3 3. 巴斯卡三角形 4 4.三色棋 5 5.老鼠走迷官(一) 7 6.老鼠走迷官(二) 9 7.骑士走棋盘 10 8.八皇后 13 9.八枚银币 15 10.生命游戏 17 11.字串核对 20 12.双色、三色河内塔 22 13.背包问题(Knapsack Problem) 26 14.蒙地卡罗法求 PI 31 15.Eratosthenes筛选求质数 32 16.超长整数运算(大数运算) 34 17.长 PI 36 18.最大公因数、最小公倍数、因式分解
  3. 所属分类:C

    • 发布日期:2011-10-25
    • 文件大小:866304
    • 提供者:eatdao
  1. c++if语句、决策语句块和变量作用域

  2. c++的if语句、决策语句块和变量作用域,决策语句块和变量作用域只有一些,可能不全
  3. 所属分类:C++

    • 发布日期:2011-10-27
    • 文件大小:1048576
    • 提供者:mangguo0824
  1. c# if 选择结构

  2. c# if 选择结构
  3. 所属分类:.Net

    • 发布日期:2012-07-04
    • 文件大小:24117248
    • 提供者:mypc2010
  1. C# if中如果有多个条件,执行顺序如何?对象的Null判断

  2. 之前写的代码是这样的。对可空类型的变量做操作时,会先判断一下是否为空 string myString=null; if(myString!=null) { if(myString.Length>0) { } } 其实2个if是可以放在一起写的, string myString=null; if(myString!=null && myString.Length>0) { } 不用担心同时判断的时候,为空怎么办? 因为If中的条件判断是从左往右开始的,所以判
  3. 所属分类:其它

    • 发布日期:2020-12-14
    • 文件大小:29696
    • 提供者:weixin_38537689
  1. 关于C# if语句中并列条件的执行

  2. C#语言中也是如此。当多个条件进行逻辑与操作的时候,判定会从表达式左边执行到右边,遇到任何一个为假,后面就都不做了。这很聪明,然而如果后面的条件会抛出异常,就是个潜在的问题。一旦之前的条件为真,就会继续执行,执行到抛出异常的条件时,程序就爆了,哈哈。 我们可以写个简单的demo试试。下面的这段代码是坑爹的,之后我会说明原因,但大家可以先从直观的层面上理解一下,最后我会给出正确的测试方法。 代码如下: static void Main(string[] args) { DataSet ds =
  3. 所属分类:其它

    • 发布日期:2021-01-01
    • 文件大小:92160
    • 提供者:weixin_38520258
  1. One-upon-a-time-C:if-else,开关盒-源码

  2. 一次一次C if-else,开关盒
  3. 所属分类:其它

    • 发布日期:2021-03-20
    • 文件大小:4096
    • 提供者:weixin_42139429
« 12 3 4 5 6 7 8 9 10 ... 50 »