一个关于多行输入的简单问题
// wu.cpp : Defines the entry point for the console application.//
#include "stdafx.h"
#include "stdio.h"
int plus(int a,int b){
return a+b;
}
int main(int argc, char* argv[])
{
int a,b;
while(getchar( )!='\n''\n'){
scanf("%d%d",&a,&b);
printf("%d",plus(a,b));
}
return 0;
while(getchar( )!='\n''\n'这一行可以这样写吗 因为我是想要 输入的时候可以多行输入 但是多行输入是每一行就要有回车键 就无法判断什么时候开始进行计算了 所以我想的是再多按一次回车键就运算 那能不能这样写呢?