当前位置:首页 » 编程语言 » c语言指针程序设计

c语言指针程序设计

发布时间: 2022-07-25 19:13:27

c语言用指针来完成的程序设计

#include<stdio.h>

struct student
{
char name[10];
float math;
float english;
float c;
};

void main(int arbc, char *argv[])
{
struct student stu[10], *ss = stu;
int i;
float sum[10] = {0}, aver[10] = {0};

for(i = 0; i < 10; i++)
{
printf("please input student name: \n");
scanf("%s", ss->name);
printf("please input student score of math: \n");
scanf("%f", &(ss->math));
printf("please input student score of english \n");
scanf("%f", &(ss->english));
printf("please input student score of c: \n");
scanf("%f", &(ss->c));
sum[i] += ss->math + ss->english + ss->c;
aver[i] = sum[i] / 3;
ss++;
}

for(i=0; i < 10; i++)
{
printf("student[%d]: %s\tsum of score: %f, average: %f\n", i, stu[i].name, sum[i], aver[i]);
}

}

❷ C语言指针编程

代码文本:

#include "stdio.h"

#define N 10

#define F(x) ((x)>0 ? (x) : -(x))

int f(int *p){

int i,mini;

for(mini=0,i=1;i<N;i++)

if(F(p[mini]) > F(p[i]))

mini=i;

printf("%d ",p[mini]);

return mini;

}

int main(int argc,char *argv[]){

int a[N],i;

printf("Enter the %d integers... ",N);

for(i=0;i<N;scanf("%d",a+i++));

printf("The subscript is %d ",f(a));

return 0;

}

❸ 设计一个程序(C语言 指针)

//DEVC

#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#include<string.h>

#defineN20

typedefstruct
{
charname[10];
intage;
intsex;
intgrade;
intnclass;
introom;
}INFO;

intmain()
{
char*name1[20]={"张","王","李","赵","钱","孙","蒋","秦","任","刘","周","郑","吴","朱","许","何","吕","谢","方","叶"};
char*name2[20]={"子","欣","晨","紫","诗","梦","嘉","一","思","静","可","佳","心","梓","俊","明","浩","博","文","天"};
char*name3[20]={"轩","勇","涛","军","浩","豪","宇","俊","鸣","熙","文","国","佑","泽","然","杰","远","平","秋","飞"};
srand((unsigned)time(0));
INFO*s;
s=(INFO*)malloc(sizeof(INFO)*N);
intn,i;
for(i=0;i<N;i++)//随机初始N个同学姓名年龄,性别,班级等数据
{
n=rand()%20;
strcpy(s[i].name,name1[n]);
n=rand()%20;
strcat(s[i].name,name2[n]);
n=rand()%20;
strcat(s[i].name,name3[n]);
//以上为随机生成姓名
s[i].age=rand()%3+16;

s[i].sex=rand()%2;

s[i].grade=rand()%3+1;

s[i].nclass=rand()%6+1;

s[i].room=100*(rand()%5+1)+rand()%20+1;
}
for(i=0;i<N;i++)
{
printf("%s%d岁",s[i].name,s[i].age);
if(s[i].sex==1)
{
printf("男");
}
else
{
printf("女");
}
printf("%d年级%d班%d室 ",s[i].grade,s[i].nclass,s[i].room);
}

charch[50];
intfind;
while(1)
{
find=0;
memset(ch,'',50);
printf(" 请输入要查询的姓名:");
fflush(stdin);
scanf("%s",ch);
for(i=0;i<N;i++)
{
if(strcmp(s[i].name,ch)==0)
{
find=1;
printf("%s%d岁",s[i].name,s[i].age);
if(s[i].sex==1)
{
printf("男");
}
else
{
printf("女");
}
printf("%d年级%d班%d室 ",s[i].grade,s[i].nclass,s[i].room);
break;
}
}
if(find==0)
{
printf(" 未找到!");
}
}
return0;
}

❹ 用c语言指针编程

有点麻烦,试试~~

最近考试有点忙,~
还未通过编译,你自己看着改改,我会尽快再发给你的。~~
1、首先格式化输入到栈,形式为:(字母开始,字母结束,空格分开不同单词,空格不能连续)。
2、构建子栈,步骤:由母栈经格式化(取每个单词后半部到子栈)。
3、排序。
4、输出。

子栈元素首行格式为(堆栈元素 + 指向一数据结构的指针)

#include<ctype.h>
#include<stdio.h>
#define STACK_INT_SIZE 100 //存储空间初始分配量
#define STACKINCREMENT 10 //存储空间分配增量
#define OK 0
typedef struct C_Node{
char elem;
struct C_Node *next;
}C_Node;
typedef struct C_Stack{
char C_elem;
char *base;
char *top;
C_Node *C_next;
}C_Stack;
typedef struct{
char *base;
char *top;
int stacksize;
}SqStack;
Status InitStack (SqStack &S)
{ S.base=(ElemType*)malloc(STACK_INIT_SIZE*sizeof(ElemType));
if (!S.base) exit (OVERFLOW); //存储分配失败
S.top = S.base;
S.stacksize = STACK_INIT_SIZE;
return OK;
}
Status Push (SqStack &S, char e) {
if (S.top - S.base >= S.stacksize) {//栈满,追加存储空间
S.base=(ElemType *)realloc(S.base,(S.stacksize+STACKINCREMENT)*sizeof (ElemType));
if (!S.base) exit (OVERFLOW); //存储分配失败
S.top = S.base + S.stacksize;
S.stacksize += STACKINCREMENT;
}
*S.top++ = e;
return OK;
}

format_input()
{int Finish=0,flag;
char ch;
while(!Finish)
{flag=0;
scanf("%c",&ch);
if(' '==ch)
else if(isalpha(ch)){
if(0==flag)
else
}
else
}
}

Creat_C_Stack()
{指向 M_Stack 内元素的指针p(用于指向一个单词的最后字母),q(指向p的前方第一个空格元素);
指向 C_Stack 首行元素的指针C_i(),及随后元素的C_i_j(insert_place);
q=M_Stack.top;
p=M_Stack.top;

i=0;
q=top;
p=top-1;
num=0;
while(1)
for(;q.elem!=' ';)
q--;
i=(p-q-1)/2;
Insert_P=C_Stack[num];
Insert_P.elem=p.elem;
p--;
for(j=0;j<i;j--)
Insert_P.next=Insert_P.next;
Insert_P.elem=p.elem;
p--;
if(q==M_Stack) return;
}
Sort()
{C_Stack C_p=C_Stack[j],C_q=C_Stack[j+1],C_Temp;
for(C_p.next!=NULL&&C_q.next!=NULL)
{if(C_p.elem!=C_q.elem){
if(C_p.elem>C_q.elem){
C_temp=C_p;C_q=C_p;C_p=C_temp;
}
else
}
}
}
output()
{for(i=0;i<C_num;i++){
q=C_Stack[i];printf("%c",q.elem);
for(q.next!=NULL){
q=q.next;
printf("%c",q.elem);
}
}
}

#include<stdio.h>
void main()
{printf("只有空格和字母为有效字符,\n");
printf("其他字符将使输入结束。\n");
format_input();
Creat_C_Stack();
Sort();
Output();
}

❺ C语言程序设计 指针的基本运算

这个p所指向的应该是数组,是先把p所指向的内存中的值赋值给X,在把p指向数组的下一个成员

❻ C语言程序设计 指针

变量前面加&代表取出这个变量的地址,&又叫取址符
指针前面加*代表取出,指针所指向的内存里的数据(值),*又叫取值符
p是指针,n是变量
计算机解析代码是从右到左,所以
*&n = *(&n)
&n代表取出n在内存中的地址,取址
*&n,就是对&n在取值
*&n和n是等价的
所以下面的都是等价的
*p = *&n
*p = n
p = &n
就好比小明住在番茄花园
小明家的地址就是番茄花园
番茄花园里的值就是小明
n代表小明,
&n就是小明的家(番茄花园)
*&n就好比问小明的家里住着谁,答案依然是小明
就好比我老婆的老公还是我。
再来理解一下*p
p是一个指针,p就是一个地址
p就是番茄花园
*p就是再问,番茄花园里住着谁
就好比有一个人叫小壮的,想找小明聚聚,但是不知道小明家的地址,他就找来和小明最要好的朋友小强,通过小强的他给了你一个字条,上面写着小明的地址,这张字条就是指针,指针就是一个记录地址东东,如果哪天小明搬家了,这张字条也就作废了,所以指针指向的是一个内存地址,如果这个地址被释放了,这个指针也就作废了,因为指针就是一张带着地址的纸。

❼ C语言程序设计指针问题

if(count<n){count++; *pa++=temp%10; total+=*pa;}
===>
if(count<n){count++; *pa=temp%10; total+=*pa++;}

❽ C语言程序设计——指针

  1. D

  2. D

  3. D

  4. ——错题,"12345"是常字符串,禁止被更改,会出运行时错误

  5. D

  6. B

  7. B

  8. C

  9. D

  10. C

❾ C语言指针编程

#include<stdio.h>
intmax(inta,intb)
{
returna>b?a:b;
}
intmin(inta,intb)
{
returna<b?a:b;
}
intmain()
{
inta,b,i;
int(*p[2])(int,int)={max,min};
scanf("%d%d",&a,&b);
scanf("%d",&i);
if(i==1||i==2)
printf("%d ",p[i-1](a,b));
return0;
}

热点内容
编程叫码农 发布:2025-01-26 17:45:45 浏览:785
bat删除指定文件夹 发布:2025-01-26 17:41:58 浏览:650
哪些汽车品牌配置防爆胎 发布:2025-01-26 17:39:42 浏览:616
怎么更改苹果密码怎么办 发布:2025-01-26 17:15:55 浏览:272
char在c语言中是什么意思 发布:2025-01-26 16:54:13 浏览:68
sqllabview 发布:2025-01-26 16:53:11 浏览:647
如何成为安卓用户 发布:2025-01-26 16:41:23 浏览:966
宋祖儿小学生编程 发布:2025-01-26 16:39:35 浏览:632
杀手3重庆如何得到密码 发布:2025-01-26 16:27:10 浏览:803
小米5传文件夹 发布:2025-01-26 16:10:58 浏览:539