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

    int result = 0; 
    while (a > 0) 
    { 
        result += a%10; 
        a /= 10; 
    } 
    return result; 

......................
阅读全部 | 2017年3月16日 11:22
#include<stdio.h>
int p(int n)
{
int i,s=1;
for(i=1;i<=n;++i)
s=s*i;
return s;
}
int main()
{

int b,n,count=0;
......................
阅读全部 | 2017年2月22日 23:05
#include<stdio.h>

int main()
{
     printf("hello,world!i'm coming!\n");
     ruturn  0;
}
阅读全部 | 2017年2月21日 22:32
#include<stdio.h>

int _Inverse(int n)  
{
    int m;
    for (m=0; n>0; n/=10)
        m = m*10 + n%10;
    return m;
}

main()
{
......................
阅读全部 | 2017年1月12日 22:11
#include<stdio.h>
main()
{
double s=1,b=0;
int n,i,j;
scanf("%d",&n);
for(i=1;i<=n;++i){
for(j=1;j<=i;++j)
{
s=1.0/(s*i);}
b=s+b;
}
......................
阅读全部 | 2017年1月12日 22:01
#include <stdio.h>
#include <string.h>
int max_len(char *s[],int n)
{
 char *t;
 int i;
 t=s[0];
 for(i=1;i<n;i++){
  if(strlen(s[i])>strlen(t)){
   t=s[i];
  }
 }
......................
阅读全部 | 2017年1月6日 08:57
#include <stdio.h> 
  
int main() 

    int n; 
    FILE *pf = fopen("1.txt", "w+"); 
    if (!pf) 
    { 
        puts("open file error!"); 
        return -1; 
    } 
    while (true) 
......................
阅读全部 | 2017年1月6日 08:24
#include<stdio.h>
int main()
{
    char *pMonth[] = {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"};
    int n;
    scanf("%d", &n);
    if (n < 1 || n > 12)
    {
        printf("月份输入错误!\n");
    }
    else
    {
......................
阅读全部 | 2017年1月5日 21:07
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int m;//记录字符串长度
int n;//记录字符串中的字符种类数
char map[256];//记录是哪几种字符
int count[256];//记录每种字符有多少个
int stack[1000];//递归用的栈,并记录当前生成的排列
void Make_Map(char *str) {//统计字符串的相关信息
    int s[256];
    int i;
    memset(s,0,sizeof(s));
......................
阅读全部 | 2017年1月4日 21:20
#include<stdio.h>
int c(int n)
{
int i;
if(n<0){
n=-n;
for(i=2;i<n/2;++i)
{if(n=i*i*i)
return 1;
}return 0;
}
else{
......................
阅读全部 | 2016年12月29日 20:34
1 2 3 4 5 下一页
天衣boy