首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴天衣boy的代码贴C语言
#include <stdio.h> 

int main() 



    int n,a; 

    scanf("%d",&n); 

    while(n--){ 

......................
阅读全部 | 2016年12月2日 16:36
#include <stdio.h>
#include <math.h>

//判断一个整数是否是完全平方数  是返回1 不是返回0
int iscpsquare(int s)
{
    if((int)sqrt((double)s)*(int)sqrt((double)s)==s) return 1;else return 0;
}

int main()
{
    int i=1;
......................
阅读全部 | 2016年12月2日 09:32
#include<stdio.h>
int main()
{
int year,month,day,leap,sum;

printf("Input year,month,day:");
scanf("%d %d %d",&year,&month,&day);
if(year%400==0||(year%4==0&&year%100!=0))
leap=1;
else
leap=0;
switch(month)
......................
阅读全部 | 2016年12月2日 09:17
#include<stdio.h>
 main()
 {
 int a[10][10];
 int i,j,n;
 scanf("%d",&n);
 a[0][0]='*';
 for(i=1;i<10;i++)
 a[i][0]=a[0][i]=i;
 for(i=1;i<=n;i++)
 for(j=1;j<=i;j++)
 a[i][j]=i*j;
......................
阅读全部 | 2016年12月2日 09:13
上一页 1 2 3 4 5
天衣boy