Buscar

5.What happens when you attempt to compile and run the following code? #include using namespace std; int main() { int x,y=10; float f; f...

5.What happens when you attempt to compile and run the following code?
#include
using namespace std;
int main()
{
int x,y=10;
float f;
f = 5.90;
cout << f << ", ";
x=f;
cout << x <<", ";
f=y;
cout << f;
return 0;
}
A.It prints: 5, 5, 10.00
B.It prints: 5.9, 5, 10
C.It prints: 6, 5, 10
D.It prints: 6, 5, 10.00
Answer: B


Essa pergunta também está no material:

C Certified Associate Programmer CPA Dumps
16 pág.

Ensino Médio LaSalle TechLaSalle Tech

💡 1 Resposta

User badge image

Ed Verified user icon

Quando você tenta compilar e executar o código fornecido, ele imprime: 5.9, 5, 10. Portanto, a resposta correta é a alternativa B.

0
Dislike0

✏️ Responder

SetasNegritoItálicoSublinhadoTachadoCitaçãoCódigoLista numeradaLista com marcadoresSubscritoSobrescritoDiminuir recuoAumentar recuoCor da fonteCor de fundoAlinhamentoLimparInserir linkImagemFórmula

Para escrever sua resposta aqui, entre ou crie uma conta

User badge image

Outros materiais

Outros materiais