JWT Token всегда возвращается как Not Found Symfony2.8

Вы можете использовать имя переменных, чтобы проверить, является ли значение целым. например:

#include <iostream>
using namespace std;

int main (){

int firstvariable;
int secondvariable;
float float1;
float float2;

cout << "Please enter two integers and then press Enter:" << endl;
cin >> firstvariable;
cin >> secondvariable;

if(firstvariable && secondvariable){
    cout << "Time for some simple mathematical operations:\n" << endl;

    cout << "The sum:\n " << firstvariable << "+" << secondvariable 
    <<"="<< firstvariable + secondvariable << "\n " << endl;
}else{
    cout << "\n[ERROR\tINVALID INPUT]\n"; 
    return 1; 
} 
return 0;    
}
1
задан Sunil Rawat 22 February 2019 в 15:00
поделиться

0 ответов

Другие вопросы по тегам:

Похожие вопросы: