Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int n1 = 4;
- ////////////////////////////////////////////////
- int main()
- {
- printf("The Faculty of Fhysicks!\n");
- for(int i = 1; i <= 9; i++)
- {
- printf("%d * %d = %2d\n", n1, i, n1 * i);
- }
- }
- /*
- printf("%d * %d = %2d\n" , n1, n2, n1 * n2); n2 ++;
- printf("%d * %d = %2d\n" , n1, n2, n1 * n2); ++ n2;
- printf("%d * %d = %2d\n" , n1, n2, n1 * n2);
- */
- /*
- #include <stdio.h>
- int n1=5;
- int n2=1;
- ////////////////////////////////////////////////
- int main()
- {
- printf("The Faculty of Fhysicks!\n");
- printf("%d * %d = %2d\n", n1, n2, n1 * n2); n2 ++;
- printf("%d * %d = %d\n" , n1, n2, n1 * n2); n2 ++;
- printf("%d * %d = %d " , n1, n2, n1 * n2);
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement