我刚刚学习了C函数;我可以在函数返回值上使用if语句吗?

前端之家收集整理的这篇文章主要介绍了我刚刚学习了C函数;我可以在函数返回值上使用if语句吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我感到困惑的是关于isNumPalindrome()函数.它返回一个布尔值true或false.我怎么想使用它,所以我可以显示它是否是回文.对于前者if(isNumPalindrome == true)cout<< “你的号码是回文”;别的cout<< “你的号码不是回文.”;
#include "stdafx.h"


int _tmain(int argc,_TCHAR* argv[])
{
 return 0;
}

#include <iostream>
#include <cmath>

using namespace std;

int askNumber();
bool isNumPalindrome();

int num,pwr;

int main()
{
 askNumber();

 return 0;
}

bool isNumPalindrome()
{
 int pwr = 0;

 if (num < 10)
  return true;
 else
 {
  while (num / static_cast<int>(pow(10.0,pwr)) >=10)
   pwr++;
  while (num >=10)
  {
   int tenTopwr = static_cast<int>(pow(10.0,pwr));

   if ((num / tenTopwr) != (num% 10))
    return false;
   else
   {
    num = num % tenTopwr;
    num = num / 10;
    pwr = pwr-2;
   }
  }

  return true;
 }
}

int askNumber()
{
 cout << "Enter an integer in order to determine if it is a palindrome: " ; 
 cin >> num;
 cout << endl;

if(isNumPalindrome(num))
{
cout << "It is a palindrome." ;
cout << endl;
}
else
{
cout << "It is not a palindrome." ;
cout << endl;
}
 return num;
}

解决方法

函数的返回值可以像相同类型的变量一样使用.

你的主程序应该是这样的:

int main()
{
  int num=askNumber();
  bool isPal=isNumPalindrome(num);
  if (isPal)
  {
    //do something
  }
  else
  {
    //do something else
  }

  return 0;
}

或者你可以更简洁:

int main()
{
  if (isNumPalindrome(askNumber()))
  {
    //do something
  }
  else
  {
    //do something else
  }

  return 0;
}

您不想做的是使用您定义的那些全局变量.在更复杂的程序中,这将成为一场灾难.

编辑:您需要确保编辑isNumPalindrome函数以接受它正在使用的数字:

bool isNumPalindrom(int num)
{
   ...
}
原文链接:https://www.f2er.com/c/117053.html

猜你在找的C&C++相关文章