Skip to content

Instantly share code, notes, and snippets.

@ronnywang
Created August 24, 2012 08:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ronnywang/3447587 to your computer and use it in GitHub Desktop.
Save ronnywang/3447587 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main()
{
int i, j;
int result = 0;
while (1) {
if (2 != scanf("%d %d", &i, &j)) {
break;
}
// 程式寫在這
printf("%d %d %d\n", i, j, result);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment