我必须知道,如何把两个简单的C方案的投入和产出同时联系起来,把第三个 Java/C方案联系起来。
我曾尝试过管道、袖珍和客户的连接,但是,如果只使用扫描仪和印刷件,便无法使用简单的C方案。
Sample programs: Program1.c
#include<stdio.h>
int main(int argc,char *argv[])
{
int a;
while(1)
{
scanf("%d",&a);
printf("%d",a);
}
return 0;
}
方案2.c
#include<stdio.h>
int main(int argc,char *argv[])
{
int a;
while(1)
{
scanf("%d",&a);
printf("%d",a);
}
return 0;
}
My aim is to connect stdin and stdout of program1.c with stdin and stdout of program2.c with the help of a third Java or C program