会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
ZhangManlun
博客园
|
首页
|
新随笔
|
新文章
|
联系
|
订阅
|
管理
2018年4月9日
倒三角c语言
摘要: #include <stdio.h>#include <stdlib.h> int main(){ int n,c,a,b; scanf("%d",&n); for(c=n;c>=1;c--) { for(a=0;a<n-c;a++) printf(" "); for( b=2*c-1;b>=1;b
阅读全文
posted @ 2018-04-09 12:12 ZhangManlun
阅读(1157)
评论(0)
推荐(0)
编辑
c++文件流
摘要: 比cin快很多 #include <iostream>#include<fstream>using namespace std;ifstream fin("aplusb.in");ofstream fout("aplusb.out"); int main(){ int a,b; while(fin>
阅读全文
posted @ 2018-04-09 11:47 ZhangManlun
阅读(150)
评论(0)
推荐(0)
编辑
重定向与fopen
摘要: //重定向 #include<stdio.h>#define LOCAL#define INF 1000000000int main(){ #ifdef LOCAL freopen("data.in","r",stdin); freopen("data.out","w",stdout); #endi
阅读全文
posted @ 2018-04-09 11:34 ZhangManlun
阅读(425)
评论(0)
推荐(0)
编辑
阶乘加法and时间
摘要: #include<stdio.h>#include<math.h>#include<time.h>int main(){ const int MOD =1000000; int i,j,n,s=0; scanf("%d",&n); for(i=1;i<=n;i++) { int factorial=
阅读全文
posted @ 2018-04-09 11:19 ZhangManlun
阅读(186)
评论(0)
推荐(0)
编辑
c中int范围,int字节长度
摘要: #include<stdio.h>#include<limits.h>int main(){ printf("%i %i %d",INT_MAX,INT_MIN,sizeof(int));}
阅读全文
posted @ 2018-04-09 10:41 ZhangManlun
阅读(2731)
评论(0)
推荐(0)
编辑
公告