首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看C语言
#include<stdio.h>
#include<string.h>
#include<stdlib.h> 
#define LENGTH 81
int main()
{
char mystr[LENGTH];
int mychar=0;
FILE *pfile=NULL;
char *filename="myfile.txt";

printf("Enter an interesting string of up to %d characters:\n",LENGTH-1);
......................
阅读全部 | LiangLI 贴于 2016年6月16日 21:05     hide bbsi
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define MAX_STUDENT_SIZE 1000

struct Student {
char name[32];
char id[16];
int chinese_score;
int math_score;
int total_score;
......................
阅读全部 | 小金金 贴于 2016年6月8日 03:27     hide bbsi
#include <iostream>
#include <fstream>
#include <iomanip>
#include <cmath>
using namespace std;
int main()
 {ofstream ofile;
 ofile.open("E:\\c语言\\100以内素数.txt");
 int i,j;
 double k;
 for(i=2;i<=100;i++)
{k=sqrt(double(i));
......................
阅读全部 | huicc 贴于 2016年6月7日 15:53     hide bbsi
#include <stdio.h>
main(){
float average(int a[]) ;          //声明求平均值函数
int number[10];
float aver;
int i;
printf("请输入10个整数\n");
for(i=0;i<10;i=i++){
printf("第%d个数:",i+1);
scanf("%4d",&number[i]);
}
aver=average(number[i]);               //调用求平均值函数
......................
阅读全部 | fx1849454016 贴于 2016年6月7日 14:19     hide bbsi
int main()
{
    int map[15][13] = {0,0,0,3,2,1,2,3,2,1,0,0,0
                     0,10,10,2,0,0,0,0,0,2,0,0,0
                     0,10,10,1,0,0,0,0,0,3,0,0,0
                       0,7,0,2,0,0,0,0,0,2,0,0,0
                       2,1,2,9,0,0,0,0,0,4,2,3,2
                       3,0,0,0,0,0,0,0,0,0,0,0,1
                       2,0,0,0,0,0,0,0,0,0,0,0,2
                       8,1,1,1,1,1,5,5,1,1,1,1,6
                       2,0,0,0,0,0,0,0,0,0,0,0,2
                       3,0,0,0,0,0,0,0,0,0,0,0,1
......................
阅读全部 | dc1257305369 贴于 2016年6月7日 13:55     hide bbsi
#include "stdio.h"

void main()
{
int x,profit = 0;

printf("please input bonus: %d");
scanf("%d", &x);

switch(x/100000)
{
case 0:
......................
阅读全部 | shao15232 贴于 2016年5月29日 18:54     hide bbsi
//Dev-C++ generate, C++ relative
#include <cstdlib>
#include <iostream>
using namespace std;

//Include necessary C libs
#include<stdio.h>
#include <stdarg.h>
#include<math.h>

//Declare function
int Detect_Tags(struct bit_data *transmit_data, struct bit_data *tag_result);
......................
阅读全部 | 哎哟 贴于 2016年5月23日 20:39     hide bbsi
# include <stdio.h>

void f(int *p, int len)
{
int i;
for(i=0; i<len; i++)
{
printf("%d  ", p[i]);
}
printf("\n");
}

......................
阅读全部 | shuima 贴于 2016年5月20日 20:43     hide bbsi
T.h
#if !defined(T_H)
#define T_H
#include 
using namespace std;
//教职工简表
class employee
{
private:
char name[10];
int age;
public:
......................
阅读全部 | wo641631790 贴于 2016年5月19日 15:48     hide bbsi
printf("here's another way to print a /
    long string.\n");


 printf("hello,"young" "lovers",wherever you are.");
阅读全部 | minions3344 贴于 2016年5月7日 14:24     hide bbsi
上一页 90 91 92 93 94 95 96 97 98 99 下一页