Informatică, întrebare adresată de tusturoi, 8 ani în urmă

Given two numbers as input, print the message "Hello world" if they are both a multiple of 5, "Hello" if only the first number is a multiple of 5, and "world" if only the second number is a multiple of 5.

Răspunsuri la întrebare

Răspuns de Solomon222
0

Răspuns:

#include <iostream>

using namespace std;

int main()

{int a,b;

cout<<"Enter the numbers: ";

cin>>a>>b;

if(a%5==0 && b%5==0)

cout<<"Hello World";

else

if(a%5==0)

cout<<"Hello";

else

if(b%5==0)

cout<<"World";

   return 0;

}

Explicație:


tusturoi: ce limbaj de programare? eu aveam nevoie the Python
tusturoi: nvm tu ai folosit C++
Solomon222: panimaiu
Solomon222: nu ai precizat, in python tot pot
Solomon222: a=int(input("Enter the numbers: "))
b=int(input())
if a%5==0 and b%5==0:
print("Hello World")
elif a%5==0:
print("Hello")
elif b%5==0:
print("World")
Alte întrebări interesante