Advertisement
Guest User

Diego Torres

a guest
Apr 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <iostream>
  2. #include <conio.h>
  3. using namespace std;
  4.  
  5. int main() {
  6. float nota = 3;
  7. for (short i = 4; i <= 20; i++){
  8. if (i % 4== 0){
  9. cout << nota << " * " << i << " = " << nota *i << endl;
  10. }
  11. }
  12.  
  13. getch();
  14. return 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement