首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看C语言
#include <stdio.h>
#include <stdlib.h>
int main() 
{
    FILE * fp ;
    char ch , filename[10] ;
    printf ( "请输入所用的文件名" ) ;
    scanf  ( "%s" , filename ) ;
    if ( ( fp = fopen ( filename , "w" ) ) == NULL )
        {
        printf ( "无法打开此文件\n" ) ;
        exit ( 0 ) ;
......................
阅读全部 | light小七 贴于 2019年1月31日 12:32     hide bbsi
#include<stdio.h>
int main()
{
void bubble_sort(int a[10]);
int s[10],i;
for(i=0;i<=9;i++)
{
scanf("%d",&s[i]);
}
bubble_sort(s);
for(i=0;i<=9;i++)
{
......................
阅读全部 | fuyumeng 贴于 2019年1月30日 18:05     hide bbsi
#include<math.h>
#include<stdio.h>
int main()
{
float a, b, c,d,e;
printf("Input parameters for the equation:\n");
scanf("%f %f %f", &a, &b, &c);
printf("The Equation: %fx^2+%fx+%f=0\n", a, b, c);
d = pow(b,2);
e = 4 * a*c;
if (d == e)
{
......................
阅读全部 | fuyumeng 贴于 2019年1月30日 18:02     hide bbsi
//汉诺塔问题
#include<stdio.h>
int main()
{
void hanoi(int n, char one, char two, char three);
int m;
printf("input the number of diskes: ");
scanf("%d", &m);
hanoi(m, 'A', 'B', 'C');
}
//将n个盘子从"one"座借助"two"座移动到"three"座的过程
void hanoi(int n, char one, char two, char three)
......................
阅读全部 | fuyumeng 贴于 2019年1月30日 18:01     hide bbsi
#include<stdio.h>
int main()
{
char c1, c2;
scanf("%c", &c1);
c2 = c1 + 32;
printf("%c\n", c2);
printf("%d\n", c2);
return 0;
}
阅读全部 | fuyumeng 贴于 2019年1月30日 17:58     hide bbsi
#include<string.h>
#include<stdio.h>
int main()
{
char string[100];
int i,length,letter=0,number=0,space=0,others=0;
gets(string);
length = strlen(string);
for (i = 0; i < length; i++)
{
if (string[i] >= 'A'&&string[i] <= 'Z' || string[i] >= 'a'&&string[i] <= 'z')
letter += 1;
......................
阅读全部 | fuyumeng 贴于 2019年1月30日 17:55     hide bbsi
#include<stdio.h>
#include<windows.h>
#include<conio.h>
#define border 20
int X = 1, Y = 1, end_x = 1, end_y = 1, food_x = border*3, food_y = border*3;
int start=0, end=0; 
int score = 0;
struct snake{   
int x;
};
struct snake_body{    //用来记录整个蛇身体的 
int x;
......................
阅读全部 | youxiaoxing 贴于 2019年1月27日 18:13     hide bbsi
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int get()
{
      int i=getchar();
      return i;
}//get
void bye()
{
      printf("bye");
      exit(0);
......................
阅读全部 | cstdio 贴于 2019年1月27日 18:06     hide bbsi
#include<stdio.h>
int main()
{
int a;
int b;
int max;
scanf("%d%d",&a,&b);
max=(a>b)?a:b;
printf("max=%d\n",max);
return 0;


......................
阅读全部 | 影子—— 贴于 2019年1月16日 17:44     hide bbsi
#include<math.h>
#include<stdio.h>
main()
{
int a=1,b=1,c=1;
float i=0.0,d=0.0001;
while(fabs(1./a)>=fabs(d))
{
i=i+1/a;
if(b%2!=0)
c=-1;
else c=1;
......................
阅读全部 | zzz 贴于 2019年1月12日 22:08     hide bbsi
上一页 54 55 56 57 58 59 60 61 62 63 下一页