#include<stdio.h>
void main()
{
printf("hello world");
}
阅读全部
|
guoq416
贴于 2013年3月24日 00:32
hide
bbsi
#include<stdio.h>
#define LEN 100
int main()
{
char str[LEN];
fgets(stdin, LEN, stdin);
puts(str);
}
阅读全部
|
北辰风
贴于 2013年3月21日 17:49
hide
bbsi
#include <stdio.h>
//获取公历年初至某整月的天数
int year_sumday(int year,int month)
{
int sum=0;
int rui[12]={31,29,31,30,31,30,31,31,30,31,30,31};
int ping[12]={31,28,31,30,31,30,31,31,30,31,30,31};
int ruiflag=0;
if((year%4==0 &&year%100!=0) || year%400==0) ruiflag=1;
for(int index=0;index<month-1;index++)
{
......................
阅读全部
|
wp231957
贴于 2013年3月21日 11:01
hide
bbsi
#include <time.h>
#include <math.h>
#include <stdio.h>
int a[240] = {0};
int ss[1230] = {2, 3, 5, 7, 11, 13, 17, 19};
void Init()
{ //10000以内质数表,1229个
int i, j, k = 8, temp;
for (i = 23;k != 1230;i += 2)
{
......................
阅读全部
|
wp231957
贴于 2013年3月21日 10:03
hide
bbsi
/*程序名称:学生成绩管理系统*/
/*程序设计者:致远 */
/*设计时间:2013-3-15 */
/**************************************************************************************************/
#include <stdio.h>
#include <string.h>
#define N 150
int temp;
struct student
{
......................
阅读全部
|
致远
贴于 2013年3月20日 19:10
hide
bbsi
#include<stdio.h>
#include<string.h>
#include <stdlib.h>
int max_len(char *s[],int n);
int main (void)
{
int n , i;
char *s[10], str[10];
int count;
printf("n=");
scanf("%d",&n);
......................
阅读全部
|
vip168
贴于 2013年3月17日 14:45
hide
bbsi
#include<stdio.h>
#include<string.h>
#include <stdlib.h>
int max_len(char *s[],int n);
int main (void)
{
int n , i;
char *s[10], str[10];
int count;
printf("n=");
scanf("%d",&n);
......................
阅读全部
|
心寒
贴于 2013年3月16日 14:50
hide
bbsi
#include<stdio.h>
#include<string.h>
#include <stdlib.h>
int max_len(char *s[],int n);
int main (void)
{
int n , i;
char *s[10];
int count;
printf("n=");
scanf("%d",&n);
......................
阅读全部
|
心寒
贴于 2013年3月16日 14:49
hide
bbsi
int index=0;
void dec2yyy(int yyy,int source,char* bin)
{
if(source==0) return;
dec2yyy(yyy,source/yyy,bin);
if((source%yyy)<10) bin[index]=(char)(source%yyy+0x30);
else bin[index]=(char)(source%yyy+0x37);
index++;
}
阅读全部
|
wp231957
贴于 2013年3月15日 09:07
hide
bbsi
#include <stdio.h>
void hanoi(int n, char A, char B, char C) {
if(n == 1) {
printf("Move sheet %d from %c to %c\n", n, A, C);
}
else {
hanoi(n-1, A, C, B);
printf("Move sheet %d from %c to %c\n", n, A, C);
hanoi(n-1, B, A, C);
}
}
int main() {
......................
阅读全部
|
忧伤的小王子
贴于 2013年3月14日 01:29
hide
bbsi