QUIZ 2

El segundo quiz fue separado en solo dos programas, el primero pregunta dos números diferentes al usuario y calcula con funciones el primero numero con el segundo

//CODE 1:

# include <iostream>
#include <cmath>
using namespace std;

int main(int argc, char const *argv[]) {
int num1, num2, R;
std::cout << “This program makes the power function between number 1 and number 2.” << std::endl;
std::cout << “Please enter number 1” << std::endl;
std::cin >> num1;
std::cout << “Please enter number 2” << std::endl;
std::cin >> num2;

R=pow (num1, num2);

std::cout << “The final result is… ” <<R << std::endl;
return 0;
}Captura de pantalla 2016-05-14 a las 11.07.07.png

Este código es capaz de imprimir un cierto número de estrellas con un valor dado por el usuario . El uso de una función llamada “estrellas” y un bucle .

#include <iostream>

using namespace std;

void stars(int s) {
int count=0;
do {
std::cout << “*” << std::endl;
count++;
} while(count!=s);
}

int main(int argc, char const *argv[]) {
int s, count;

std::cout << “This program prints the stars you ask for.” << std::endl;
std::cout << “Please enter the number of stars you want to print in the console.” << std::endl;
std::cin >> s;
stars(s);

return 0;
}

 

CC BY-SA 4.0 QUIZ 2 by lilihecblog is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.