#include <math.h>
#include <stdio.h>
int p(int s)
{
if ((int) sqrt((double) s) * (int) sqrt((double) s) == s) return 1;
else return 0;
}
int main()
{
int i=0,j=0;
......................
阅读全部
|
天衣boy
贴于 2016年12月28日 21:47
hide
bbsi
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
//-----------------------------
typedef struct __tag_data
{
int x, y;
int step;
} ElemType;
......................
阅读全部
|
azzbcc
贴于 2016年12月26日 18:26
hide
bbsi
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
//-----------------------------
typedef struct __tag_data
{
int x, y;
} ElemType;
ElemType elem_next(ElemType *data, int direction)
......................
阅读全部
|
azzbcc
贴于 2016年12月26日 17:14
hide
bbsi
#include<stdio.h>
int main()
{
int strcmp(char*p1,char*p2);
char*a,s1[10];
char*b,s2[10];
a=s1;
b=s2;
printf("请输入a和b:");
scanf("%s%s",a,b);
printf("%d\n",strcmp(a,b));
return 0;
......................
阅读全部
|
liuhxw
贴于 2016年12月26日 15:32
hide
bbsi
#include <stdio.h>
#include <stdlib.h>
int Result(int i);
int main()
{
int n,y,e=1,n1;
printf("input n:");
scanf("%d",&n);
n1=n;
y=Result(e);
n=n-1;
while(n!=0)
......................
阅读全部
|
JohnMeng
贴于 2016年12月26日 14:03
hide
bbsi
#include<stdio.h>
int c(int n)
{
int i;
if(n<0)
n=-n;
else if(n==0)
return 1;
else for(i=2;i<n/2;++i)
{
if(n==i*i*i)
return 1;
......................
阅读全部
|
天衣boy
贴于 2016年12月25日 12:14
hide
bbsi
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define SUBJECT_COUNT 500
#define Person_COUNT 500
typedef struct str_Person
{
char number[10];
char name[20];
char sex[10];
char birth[10];
......................
阅读全部
|
wuli鬼鬼
贴于 2016年12月25日 02:08
hide
bbsi
#include<stdio.h>
int main()
{
int a[20],b[20];
int n,i,j,t,mid;
scanf("%d",&n);
for(i=0;i<n;++i)
scanf("%d",&a[i]);
for(i=0;i<n;++i)
for(j=0;j<n-1-i;++j)
{
if(a[j]>a[j+1]){
......................
阅读全部
|
天衣boy
贴于 2016年12月24日 17:23
hide
bbsi
#include<stdio.h>
int main()
{
struct khk{
int year;
int month;
int day;
char phone[30];
char name[30];
};
khk s[30];
struct khk t;
......................
阅读全部
|
天衣boy
贴于 2016年12月24日 14:07
hide
bbsi
#include<stdio.h>
main()
{
struct student{
char name[20];
int year;
int month;
int day;
char phone[13];
};
student s[30];
......................
阅读全部
|
天衣boy
贴于 2016年12月23日 09:33
hide
bbsi