#include<stdio.h>
int fac(int n)
{
long t=1;
int k;
for(k=2;k<=n;k++)
{
t=t*k;
}
return t;
}
void main()
......................
阅读全部
|
o547336583
贴于 2015年7月17日 17:21
hide
bbsi
#include <windows.h>
#include <GL/gl.h>
#include <GL/glu.h>
#include <GL/glaux.h>
//
初始化
OpenGL
场景
......................
阅读全部
|
gshkjk
贴于 2015年7月13日 20:30
hide
bbsi
#include<stdio.h>
void main()
{int i,j,x=0;
int a[6]={2,3,4};
for(i=0,j=1;i<3&&j<4;i++,j++) x+=a[i]*a[j];
printf("%d\n",x);
}
第一次算x,是拿i=0,j=1算的吗?
阅读全部
|
魅影俘获
贴于 2015年6月26日 16:43
hide
bbsi
#include<stdio.h>
#include<stdlib.h>
#define LEN sizeof(struct stu)
struct stu
{
int sno;
char name[10];
float score[3];
struct stu *next;
};
int main()
{
......................
阅读全部
|
thankyou1
贴于 2015年6月24日 18:14
hide
bbsi
简述以下算法的功能:
status A(LinkList L){//L是无表头结点的单链表
if(L&&L->next){
Q=L;L=L->next;p=L;
while(p->next)p=p->next;
p->next=Q;Q->next=NULL;
}
return OK;
}
阅读全部
|
执扬
贴于 2015年6月23日 20:31
hide
bbsi
#include<conio.h>
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
#define szSTR 240
/*考题数据库,以链表表示*/
struct Question{
char titleszSTR [];/*题目*/
char answer;/*正确答案*/
char mark;/*防止重复出题的标志位*/
char structQuestion*next;
......................
阅读全部
|
敬爱的汪老师
贴于 2015年6月22日 20:32
hide
bbsi
#include<stdio.h>
#define ROW 3
#define COL 4
void main()
{
int array[ROW][COL];
int temp;
printf("请输入%d个整数:\n",ROW*COL);
for(i=0;i<ROW;i++)
{
......................
阅读全部
|
大河马
贴于 2015年6月22日 09:19
hide
bbsi
int menu(LinkList*temp)
{
int t;
do
{
headword();
printf(" 主 菜 单 \n");
printf(" 1.请输入文章内容 \n");
printf(" 2.显示当前文章内容 \n");
printf(" 3.进入文本内容统计菜单 \n");
printf(" 4.查找文章中的字符或字符串 \n");
......................
阅读全部
|
不布鲁
贴于 2015年6月16日 15:14
hide
bbsi
package junitexample;
public class Triangle {
// -------------------------Class Attributes--------------
private String side1;
private String side2;
private String side3;
// -------------------------Constructors------------------
public Triangle() {
// Create a default triangle
this("0", "0", "0");
......................
阅读全部
|
妹妹的猫猫
贴于 2015年6月15日 11:12
hide
bbsi
1、店铺运作:
A、保持货场及货仓整齐、整洁。
B、协助完成陈列工作。
C、保管店铺货品及财物。
D、遵守仪容、仪表规范标准和制服规范标准。
E、如发m现货场内出现需维修的问题,应立即向上级汇报。
阅读全部
|
zichock1
贴于 2015年6月13日 00:03
hide
bbsi