#include<stdio.h>
/*count space,\t,\n*/
main()
{
int c,nb,nt,nl;
nb=nt=nl=0;
while((c=getchar())!=EOF){
if(c==' ')
++nb;
else if(c=='\t')
++nt;
else if(c=='\n')
......................
阅读全部
|
巡山王
贴于 2017年7月19日 00:46
hide
bbsi
//自学中...无授课老师,拜托大神帮忙看看~
#include<stdio.h>
#include<time.h>
#include<math.h>
clock_t start,stop;
double duration;
#define MAXN 10
/*多项式最大相熟,即多项式阶乘+1*/
double f1(int n,double a[],double x);
double f2(int n,double a[],double x);
int main()
{
......................
阅读全部
|
senstitive
贴于 2017年7月17日 09:00
hide
bbsi
/************2017.7.5上午***********/
/*制作简单的英汉电子词典*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
char A[100][20];
char E[100][20];//英文
char C[100][20];//中文
int count;
int display();
void search();
void modify();
......................
阅读全部
|
bobotu
贴于 2017年7月7日 14:59
hide
bbsi
求大神帮忙啊 愁死啦
#include<iostream>
using namespace std;
#include<stdlib.h>
#include <time.h>
#include<string.h>
#define SIZE 4
typedef struct Car1
{
char number[15];
int artime;
int letime;
......................
阅读全部
|
卡萨丁1234
贴于 2017年7月3日 22:00
hide
bbsi
求大神帮忙啊 愁死啦
#include<iostream>
using namespace std;
#include<stdlib.h>
#include <time.h>
#include<string.h>
#define SIZE 4
typedef struct Car1
{
char number[15];
int artime;
int letime;
......................
阅读全部
|
卡萨丁1234
贴于 2017年7月3日 22:00
hide
bbsi
#include<stdio.h> /*引用库函数*/
#include<stdlib.h>
#include<ctype.h>
#include<string.h>
typedef struct /*定义结构体数组*/
{
char num[20]; /*学号*/
char name[10];
int Cnum;
int Enum;
int Mnum;}Student;
Student stu[80]; /*结构体数组变量*/
......................
阅读全部
|
DTIX
贴于 2017年7月2日 23:06
hide
bbsi
#include <stdio.h>
void dui(int A[]);
void cuo(void);
void panduan(int p[7][7]);
void shuru();
int i,j,k; //i是每个保安的变量,j是存放选择的天数,k是存放每人选择日期的变量
int p[7][7]; //存放选择的日期的变量,每个人选择的日期变量
int a ,b ,c ,d ,e ,f ,g ;
int ax,bx,cx,dx,ex,fx,gx; //确定选择个数的变量
int A[7]={0}; //比较
......................
阅读全部
|
XH_jing
贴于 2017年7月2日 17:38
hide
bbsi
#include <iostream>
using namespace std;
void meger(int a[],int b[],int m,int n);
int main()
{
int A[5]={1,5,3,7,9};//定义了第一个数组和值
int B[5]={2,4,8,6,10};//定义了第二个数组和值
meger(A,B,5,5);//调用函数
return 0;
}
void meger(int a[],int b[],int m,int n)
{
......................
阅读全部
|
H_Ace_Killer
贴于 2017年6月29日 11:01
hide
bbsi