Advertisement
mhdew

5_Exp_PP2

Jun 19th, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5.     int i, j;
  6.     for(i=1;i<20;i+=2){
  7.         for(j=5;j<=7;j++){
  8.             printf("A=%d B=%d\n", i,j);
  9.         }
  10.     }
  11.  
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement