白皮 Chapter 2

7.2 做题一遍就过的感觉简直太美好啦~然而我并没有测试数据QAQ

//program name digit
#include<cstdio>
#include<iostream>
using namespace std;
int main()
{
    int a,count=0;
    cin>>a;
    while (a>0){
        a=a/10;
        count++;
    }
    cout<<count;
    return 0;
}

digit

//program name daffodil
#include<cstdio>
#include<iostream>
using namespace std;
int main()
{
    int a,b,c;
    for (a=1;a<=9;a++)
        for (b=0;b<=9;b++)
            for (c=0;c<=9;c++)
                if (a*a*a+b*b*b+c*c*c==100*a+10*b+c) cout<<100*a+10*b+c<<"\n";
    return 0;
}

daffodil

//program name hanxin
#include<cstdio>
#include<iostream>
using namespace std;
int main()
{
    int a,b,c,i;
    cin>>a>>b>>c;
    for (i=10;i<=100;i++)
        if (i % 3==a && i % 5==b && i % 7==c)
        {
            cout<<i<<"\n";
            break;
        }
    if (i==101) cout<<"No answer";
    return 0;
}

hanxin

//program name triangle
#include<cstdio>
#include<iostream>
using namespace std;
int main()
{
    int n,i,j;
    cin>>n;
    for (i=1;i<=n;i++)
    {
        for (j=1;j<=i-1;j++) cout<<" ";
        for (j=1;j<=2*(n-i)+1;j++) cout<<"#";
        cout<<"\n";
    }
    return 0;
}

triangle

7.3 要坚持练语法打下扎实基础啊~

时间: 2024-10-06 22:07:01

白皮 Chapter 2的相关文章

白皮 Chapter 1

今天主要做了一些1.5中的小结和练习,果然换语言思路也要跟着变么…各种不爽啊不爽… scanf各种忘记&,还有各种忘记return 0… #include<stdio.h> #include<math.h> int main() { int a,b,c; double ave; scanf("%d%d%d",&a,&b,&c); ave=(a+b+c)/3; printf("%.3lf",ave); retur

ANSI Common Lisp Chapter 2

Chapter 2 总结 (Summary) Lisp 是一种交互式语言.如果你在顶层输入一个表达式, Lisp 会显示它的值. Lisp 程序由表达式组成.表达式可以是原子,或一个由操作符跟着零个或多个实参的列表.前序表示法代表操作符可以有任意数量的实参. Common Lisp 函数调用的求值规则: 依序对实参从左至右求值,接着把它们的值传入由操作符表示的函数. quote 操作符有自己的求值规则,它完封不动地返回实参. 除了一般的数据类型, Lisp 还有符号跟列表.由于 Lisp 程序是

Chapter 5 MySQL Server Administration_1

Chapter 5 MySQL Server Administration Table of Contents 5.1 The MySQL Server 5.1.1 Configuring the Server 5.1.2 Server Configuration Defaults 5.1.3 Server Option and Variable Reference 5.1.4 Server Command Options 5.1.5 Server System Variables 5.1.6

Notes : &lt;Hands-on ML with Sklearn &amp; TF&gt; Chapter 7

.caret, .dropup > .btn > .caret { border-top-color: #000 !important; } .label { border: 1px solid #000; } .table { border-collapse: collapse !important; } .table td, .table th { background-color: #fff !important; } .table-bordered th, .table-bordere

软工Chapter Six

软工Chapter six 团队和流程 典型的软件团队模式和开发流程是:主治医师模式.明星模式.社区模式.业余剧团模式.秘密团队.特工团队.交响乐团模式.爵士乐模式.功能团队模式:写了再改模式.瀑布模型.瀑布模型的各种变形.统一流程.老板驱动的流程.渐进交付的流程. 现在的编程离不开团队的合作,那么怎样的组合才能算是一个团队呢?首先,团队有一致的集体目标,团队要一起完成这目标.一个团队的成员不一定要同时工作,但一定要有共同的目标.另外团队成员有各自的分工,互相依赖合作,共同完成任务. 软件团队有

[AWDwR4] chapter 11 Play time 2th: use blind_up effect

chapter 11 Play time Play time 2:    使用Script.aculo.us JavaScript库中的blind_up效果代替隐藏cart这个div的过程.    上网搜了一下,jquery中有blind这个效果,所以就用jquery中的hide("blind"),而不使用Script.aculo.us JavaScript库    app/views/carts/destroy.js.erb这个文件可以有好几种写法,对照着可以加深理解:      

Professional C# 6 and .NET Core 1.0 - Chapter 41 ASP.NET MVC

What's In This Chapter? Features of ASP.NET MVC 6 Routing Creating Controllers Creating Views Validating User Inputs Using Filters Working with HTML and Tag Helpers Creating Data-Driven Web Applications Implementing Authentication and Authorization W

Chapter.1 C#语言基础

一.C#项目组成结构 1.项目后缀:.config---配置文件 .csproj---项目文件(管理文件) .sln---解决方案文件(管理项目) .cs---源文件(程序代码) p.s.: 后缀不同代表文件类型也不同,这些文件后缀类型会在”解决方案资源管理器“中看到. 2.主函数.输出语句.输入语句: namespace Chapter.2 //命名空间 { class Program //类 { static void Main(string[] args) //方法(主函数) { Cons

《深入理解计算机系统》 Chapter 7 读书笔记

<深入理解计算机系统>Chapter 7 读书笔记 链接是将各种代码和数据部分收集起来并组合成为一个单一文件的过程,这个文件可被加载(货被拷贝)到存储器并执行. 链接的时机 编译时,也就是在源代码被翻译成机器代码时 加载时,也就是在程序被加载器加载到存储器并执行时 运行时,由应用程序执行 链接器使分离编译称为可能. 一.编译器驱动程序 大部分编译系统提供编译驱动程序:代表用户在需要时调用语言预处理器.编译器.汇编器和链接器. 1.将示例程序从ASCⅡ码源文件翻译成可执行目标文件的步骤 (1)运