参考代码如下:#includevoid main(){ char c; char d[200]; int i,n=0; while((c=getchar())!='\n') { d[n++]=c; } for(i=0;i<n;i++) {...
分类:
编程语言 时间:
2014-11-15 12:45:32
阅读次数:
188
clearerr(清除文件流的错误旗标) 相关函数 feof 表头文件 #include 定义函数 void clearerr(FILE * stream); 函数说明 clearerr()清除参数stream指定的文件流所使用的错误旗标。 返回值 fclose(关闭文件) ...
分类:
其他好文 时间:
2014-11-10 01:05:02
阅读次数:
339
题意:
#pragma comment(linker, "/STACK:1024000000,1024000000")
#include
#include
#include
#include
template
inline bool rd(T &ret) {
char c; int sgn;
if (c = getchar(), c == EOF) return 0...
分类:
其他好文 时间:
2014-11-09 15:19:46
阅读次数:
242
当数据太大,内存要求紧,整数范围小时,存在不能用快排的情况,这时可用计数排序。
#include
#include
#include
inline int readint(){
char c=getchar();
while(!isdigit(c)) c=getchar();
int x=0;
while(isdigit(c)) {
x=x*10+c-'0...
分类:
编程语言 时间:
2014-11-08 15:19:58
阅读次数:
194
#include
int main()
{
int i;
static char str[80];
for (i=0; i<80; i++)
{
str[i] = getchar();
if (str[i] =='\n')
...
分类:
其他好文 时间:
2014-11-07 16:46:55
阅读次数:
170
簡單題,用C++寫了...需要注意的是,cin了之後不會把\n吃掉,需要再getchar一次才能夠吃掉\n,然後接着geline才正確感覺沒什麼美感... 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include ...
分类:
其他好文 时间:
2014-11-06 23:31:40
阅读次数:
241
#include<stdio.h>
#include<string.h>
intmain(intargc,constchar*argv[]){
charone[100],two[100],sum[100];
inttemp=0,lenth,lenthTwo,i,lenthOfSum;
scanf("%s",one);
getchar();//读取回车字符
scanf("%s",two);
lenthTwo=(int)strlen(two);
if(strlen(t..
分类:
编程语言 时间:
2014-11-05 15:02:57
阅读次数:
200
分块90分。 1 #include 2 #include 3 using namespace std; 4 #define N 1000001 5 #define INF 2147483647 6 #define min(a,b) (((a)'9')C=getchar();14 while(...
分类:
其他好文 时间:
2014-11-05 09:09:16
阅读次数:
377
#include
#include
#include
#include
#include
#include
using namespace std;
typedef long long LL;
inline int read(){
int x = 0,f = 1; char ch = getchar();
while(ch '9'){if(ch == '-')f=...
分类:
其他好文 时间:
2014-11-04 21:15:02
阅读次数:
166
特意起了个傻逼标题,只是想提醒一下自己以后不要犯逗(所以应该没有什么神犇点进来吧?)T1,T3 当场写的时候就觉得是不可写的,看了题解之后还是觉得不可写,人弱没办法。到了这个时候也懒得管这么难的东西了MARK一下T2和T4好了最近很少写字符串,T2应该算是个教训吧;读换行符的时候 getchar()...
分类:
其他好文 时间:
2014-11-02 23:58:59
阅读次数:
428