我有一個程序,簡單地計算阿克曼功能: #include <iostream>
// Ackermann function calculations
unsigned int ackermann(unsigned int m, unsigned int n){
if(m == 0)
return n+1;
if(n == 0)
return acke
我正在製作一個程序,我向用戶詢問日期並將其與當前日期進行比較。所有的功能在那裏,但我似乎無法驗證一天,一年和一年是數字,所以輸入的信件崩潰的程序。有任何想法嗎? (注意:do while循環中的功能按預期工作) do // This do while loop forces the user to enter a valid date before moving on
{
c