Posts by Vitor Ernandes • 11 points
2 posts
-
1
votes1
answer37
viewsQ: When I type withdrawal and place the amount higher than the balance the if is not working and barring this operation
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <iostream> std::string nome, menu; float saldo, valor, saque; using namespace std; main() { std::cout…
c++asked Vitor Ernandes 11 -
-1
votes1
answer33
viewsQ: I am trying to compare the word deposit with what the user will type, and if it is equal he will make the deposit
#include <stdio.h> #include <stdlib.h> #include <math.h> char nome[45], menu[45]; float saldo, valor; main(){ printf("Digite seu nome \n"); scanf("%s", &nome); printf("Digite o…