Aseeker 发表于 2019-9-15 08:57:04

c++ 求解

#include <stdio.h>
int findMax(int a, int b);
void main( )
{
int x,y,t;
printf("please input two integers (x, y):");
scanf("%d,%d", &x,&y);
t= findMax(x,y);
printf("The maximum is: %d\n",t);
}
int findMax(int a, int b)
{
int max;
if(a>b)
max=a;
else
max=b;
return max;
}

在哪里加getchar();可以使黑色那东西可以一直显示,而不是输入完数据后就弹出去看不到结果

jackz007 发表于 2019-9-15 09:16:20

本帖最后由 jackz007 于 2019-9-15 11:42 编辑

      t = findMax(x,y)                        ;
      printf("The maximum is: %d\n" , t) ;
          fflush(stdin)                                    ;
          getchar()                                          ;
}

    findMax 函数的功能很适合使用 C 语言的三目操作符实现:

#include <stdio.h>

main(void)
{
      int x , y , t                               ;
      printf("please input two integers (x, y):") ;
      scanf("%d,%d", & x , & y)                   ;
      t = (x > y) ? x : y                         ;
      printf("The maximum is: %d\n" , t)          ;
      fflush(stdin)                               ;
      getchar()                                 ;
}

bin554385863 发表于 2019-9-15 12:42:34

本帖最后由 bin554385863 于 2019-9-15 12:46 编辑

这才是C++
#include <iostream>
int findmax(int x, int y)
{
    return (x > y ? x : y);
}
int main(int argc, char const *argv[])
{
    std::cout<<"请输入要比较的两个数"<<std::endl;
    int x, y;
    std::cin>>x>>y;
    std::cout<<"最大值为:"<<findmax(x, y)<<std::endl;
    return 0;
}
--------------------------------------------------------------------------------------------
Microsoft Windows [版本 10.0.16299.1087]
(c) 2017 Microsoft Corporation。保留所有权利。

E:\Users\86184\Documents\Code>c:\Users\86184\.vscode\extensions\ms-vscode.cpptools-0.25.1\debugAdapters\bin\WindowsDebugLauncher.exe --stdin=Microsoft-MIEngine-In-calsrgva.0pm --stdout=Microsoft-MIEngine-Out-indyll5y.cyk --stderr=Microsoft-MIEngine-Error-tjrvhcvm.rlo --pid=Microsoft-MIEngine-Pid-slblwieo.3yv "--dbgExe=E:\My Program\MinGW\bin\gdb.exe" --interpreter=mi
请输入要比较的两个数
32 98
最大值为:98

E:\Users\86184\Documents\Code>
---------------------------------------------------------------
或者不用getchar
引入windows.h
在return之前加System("pause")

ijy 发表于 2019-9-19 10:43:48

#include <stdio.h>
int findMax(int a, int b);
void main( )
{
int x,y,t;
printf("please input two integers (x, y):");
scanf("%d,%d", &x,&y);
t= findMax(x,y);
printf("The maximum is: %d\n",t);
getchar();
getchar();

}
int findMax(int a, int b)
{
int max;
if(a>b)
max=a;
else
max=b;
return max;
}
页: [1]
查看完整版本: c++ 求解