Advertisement
seergiomv

Ejercicio 1.3

Dec 7th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2. blanco (int n){
  3.     int i;
  4.     while (n > 0)
  5.         for (i==1;i<n;i++)
  6.             printf("\n");
  7.  
  8. }
  9. int main() {
  10.     int n;
  11.     printf("Selecciona cuantas lineas: ");
  12.     scanf("%d", &n);
  13.     blanco(n);
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement