#include "stdio.h"
#include "time.h"
_int64 fun(_int64 n)
{
_int64 s;
if(n==0||n==1) return 1;
s=(fun(n-1)+fun(n-2));
return s;
}
int main()
{
clock_t start,finish;
......................
阅读全部
|
wp231957
贴于 2012年12月4日 16:14
hide
bbsi
#include <stdio.h>
#include<stdlib.h>
int main(void)
{
char a='0';//c语言定义变量要放在首位
printf("\n是否登录QQ?\n");
there:printf("(Y or N ?)\n");
scanf("%c",&a); //因为你要输入的是字符,而不是字符串
switch(a)
{
case 'y':case 'Y':
printf("\n正在启动腾讯QQ登录界面,请稍候......\a\a\n");
......................
阅读全部
|
旋风之间
贴于 2012年12月4日 00:02
hide
bbsi
邮箱里有一堆信若10封10封的取最后还剩9封信
若9封9封的取还剩8封
依此类推 一封一封的取 最后0封
问 邮箱,里至少有多少封信
怎么用c程序写啊
阅读全部
|
开始的开始
贴于 2012年12月3日 22:35
hide
bbsi
#include<stdio.h>
int main()
{
int a,b,c,n,d;
for(a=1;a<=9;a++)
for(b=0;b<=9;b++)
for(c=0;c<=9;c++)
{d=a*100+b*10+c;
n=a*a*a+b*b*b+c*c*c;
if(d==n)
printf("%d\n",d);
}
......................
阅读全部
|
留校察看生
贴于 2012年12月3日 18:29
hide
bbsi
#include<stdio.h>
int main()
{
int a,b,c,n,d;
for(a=1;a<=9;a++)
for(b=0;b<=9;b++)
for(c=0;c<=9;c++)
{d=a*100+b*10+c;
n=a*a*a+b*b*b+c*c*c;
if(d==n)
printf("%d\n",d);
}
......................
阅读全部
|
留校察看生
贴于 2012年12月3日 18:28
hide
bbsi
#include<iostream.h>
#include<malloc.h>
struct W{
int x;
W *next;
};
void main(){
W *q;
W *head;
W *s;
W *a;
head=(W *)malloc(sizeof(W));
......................
阅读全部
|
chenmeng1992
贴于 2012年12月3日 18:24
hide
bbsi
#include<string.h>
#define N 3
#define M 20
main()
{
char str0[N][M],str1[M],*p,*q;
int i,l,m,n;
q=str0;
for(;p<q+N;p++)
gets(p);
l=strcmp(q,q+1); //string compare
if(l>0)
......................
阅读全部
|
lilylis
贴于 2012年11月29日 22:00
hide
bbsi
#include <stdio.h>
int main(void)
{
printf("\n是否登录QQ?");
char a='0';
there:printf("(Y or N ?)");
scanf("%s",&a); //为何选择scanf("%c",&a);会输出冗余重复的提示 ?
switch(a)
{
case 'y':case 'Y':
printf("\n正在启动腾讯QQ登录界面,请稍候......\a\a\n");
/*......\a的作用是让蜂鸣器发出声响......*/
......................
阅读全部
|
LLC86
贴于 2012年11月27日 11:28
hide
bbsi
我写的这个代码有点问题,求大神指教啊,编译能通过,但是结果不对。。
#include<stdio.h>
#include<stdlib.h>
#include<malloc.h>
typedef struct LNode
{
char data;
struct LNode *next;
}LNode,*Linklist;
......................
阅读全部
|
cl875821804
贴于 2012年11月24日 12:03
hide
bbsi
#include <stdio.h>
int main()
{
printf("hello vim!");
return 0;
}
阅读全部
|
gamcat
贴于 2012年11月20日 22:59
hide
bbsi