1:实现2个终端之间的互相聊天 要求:千万不要做出来2个终端之间的消息发送是一读一写的,一定要能够做到,一个终端发送n条消息,另一个终端一条消息都不回复都是没有问题的
文件1
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <dirent.h>
#include <sys/wait.h>
#include <pthread.h>
#include <semaphore.h>
int main(int argc, const char *argv[])
{
char fifo1[32]="./fifo1.c";
int res1=access(fifo1,F_OK);
if(res1==-1)
{
mkfifo(fifo1,0666);
}
char fifo2[32]="./fifo2.c";
#if 1
int res2=access(fifo2,F_OK);
if(res2==-1)
{
mkfifo(fifo2,0666);
}
#endif
char buf[128]={0};
int len=0;
int pid=fork();
if(pid>0)
{
int fd1= open(fifo1,O_WRONLY|O_TRUNC);//清除
while(1)
{
memset(buf,0,sizeof(buf));
printf("发送的消息:\n");
scanf("%s",buf);
while(getchar()!=10);
len=strlen(buf);
// if(len==0);break;
write(fd1,buf,len);
}
wait(0);
close(fd1);
}
else if(pid==0)
{
int fd2= open(fifo2,O_RDONLY);//清除
while(1)
{
memset(buf,0,sizeof(buf));
len=read(fd2,buf,sizeof(buf));
if(strcmp(buf,"quit_pid")==0)
{
break;
}
printf("接收的消息:%s\n",buf);
printf("发送的消息:\n");
}
close(fd2);
}
return 0;
}
文件2
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <dirent.h>
#include <sys/wait.h>
#include <pthread.h>
#include <semaphore.h>
int main(int argc, const char *argv[])
{
char fifo1[32]="./fifo1.c";
#if 1
int res1=access(fifo1,F_OK);
if(res1==-1)
{
mkfifo(fifo1,0666);
}
#endif
char fifo2[32]="./fifo2.c";
int res2=access(fifo2,F_OK);
if(res2==-1)
{
mkfifo(fifo2,0666);
}
char buf[128]={0};
int len=0;
int pid=fork();
if(pid>0)
{
int fd1= open(fifo1,O_RDONLY);//清除
while(1)
{
memset(buf,0,sizeof(buf));
len=read(fd1,buf,sizeof(buf));
if(strcmp(buf,"quit_pid")==0)
{
break;
}
printf("接收的消息:%s\n",buf);
printf("发送的消息:\n");
}
wait(0);
close(fd1);
}
else if(pid==0)
{
int fd2= open(fifo2,O_WRONLY|O_TRUNC);//清除
while(1)
{
memset(buf,0,len);
printf("发送的消息:\n");
scanf("%s",buf);
while(getchar()!=10);
len=strlen(buf);
// if(len==0)break;
write(fd2,buf,len);
}
close(fd2);
}
return 0;
}
2:再把计算长方形 三角形面积的题,重新写一遍
1.c
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/wait.h>
#include <pthread.h>
int main(int argc, const char *argv[])
{
int pipefd[2] = {0};
pipe(pipefd);
int res = fork();
if(res > 0){
while(1){
double data[3] = {0};
printf("请输入三角形的三边长或长方形的长和宽:");
scanf("%lf %lf %lf",data,data+1,data+2);
while(getchar()!=10);
write(pipefd[1],data,24);
sleep(1);
}
}else if(res == 0){
char rfd[4] = {0};
sprintf(rfd,"%d",pipefd[0]);
execl("./2","2",rfd,NULL);
perror("execl");
}
return 0;
}
2.c
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/wait.h>
#include <pthread.h>
#include <math.h>
int main(int argc,const char *argv[])
{
double data[3] = {0};
double s = 0;
int rfd = atoi(argv[1]);
while(1){
read(rfd,data,24);
if(data[2] == 0.0){
s = data[0] * data[1];
printf("长方形的面积为:%g\n",s);
}else{
double a = data[0];
double b = data[1];
double c = data[2];
double p = (a + b + c)/2;
s =sqrt(p*(p-a)*(p-b)*(p-c));
printf("三角形的面积为:%g\n",s);
}
}
return 0;
}