#include <stdio.h> int main(void) { int num ; scanf("%d",&num); for(int i = 1; i < 10; i++) { printf("%d * %d = %d\n", num, i, num* i); } return 0;}
69
69 * 1 = 69 69 * 2 = 138 69 * 3 = 207 69 * 4 = 276 69 * 5 = 345 69 * 6 = 414 69 * 7 = 483 69 * 8 = 552 69 * 9 = 621
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!