- 博客(5)
- 收藏
- 关注
原创 算法笔记 PAT B1001 (3n+1猜想)
# include<stdio.h> # include<math.h> # include <string.h> /*这里写代码片 PAT B1001 (3N+1猜想) */int main() { int n=0; int count=0; scanf("%d",&n); while(n!=1) { if(n%2==0)
2017-11-05 11:02:53 384
转载 创建用户定义的数据类型
创建用户定义的数据类型可以使用 Transact-SQL 语句。系统存储过程 sp_addtype 可以来创建用户定义的数据类型。其语法形式如下: sp_addtype {type},[,system_data_bype][,’null_type’] 其中,type 是用户定义的数据类型的名称。system_data_type 是系统提供的数据类型,例如 Decimal、Int、C
2017-10-20 18:41:30 1598
原创 未被赋值的数在四则运算中使用
int main(void) { int a=3; int sum=0; int avc; sum+=a; a=sum+avc; /* 未被赋值的数加上一个已被赋值的数其结果会 导致错误值,所以在四则运算中两个数均要被赋值才可以*/ printf(“%d %d”,sum,a); return 0; }
2017-10-10 17:12:27 308
原创 欢迎使用CSDN-markdown编辑器
int main(void) {float a,b=10; a=log10(b); //a,b需要是浮点类型的数;log10表示以10为底的对数 a=log(b); //log表示以e为底的对数 printf("%lf",a); }
2017-10-09 16:10:10 242
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人