C算法--入门 2

Posted catherinezhilin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C算法--入门 2相关的知识,希望对你有一定的参考价值。

C C++比较:

1.

Scanf printf 函数

Cin cout可不指定输入输出格式,消耗时间多

 

2.

Stdio :standard input output   .h——head

Stdio.h  ——include sth about input and output   (cstdio)

#include<xxx> use stdio.h

Math.h    (cmath)

String.h    (cstring)

 

3.

Only one entrance

Int main()

Return 0;

 

4.

Int a,b;

Scanf(“%d%d”,&a,&b);

Printf(“%d”,a+b);

 

5.

C++ downward compatible C

以上是关于C算法--入门 2的主要内容,如果未能解决你的问题,请参考以下文章

C算法--入门 2

《算法竞赛入门经典(第2版)》pdf下载在线阅读,求百度网盘云资源

⭐算法入门⭐《二分枚举》简单08 —— LeetCode 441. 排列硬币

从初始C语言到算法必须经历的过程,没有捷径?

《算法竞赛入门经典(第二版)》pdf

⭐算法入门⭐《前缀和》中等03 —— LeetCode 1248. 统计「优美子数组」