#include <stdio.h> int main(void){ int i, j; for(i=0; i<5; i++){ for(j=0; j<3; j++){ printf("iは%d:jは%d\n", i, j); } } return 0;}
Standard input is empty
iは0:jは0 iは0:jは1 iは0:jは2 iは1:jは0 iは1:jは1 iは1:jは2 iは2:jは0 iは2:jは1 iは2:jは2 iは3:jは0 iは3:jは1 iは3:jは2 iは4:jは0 iは4:jは1 iは4:jは2
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!