move misc. files to onclass folder

This commit is contained in:
juan 2021-10-11 15:08:01 +08:00
parent a77b21b893
commit 5bbb717897
No known key found for this signature in database
GPG key ID: 5C1E5093C74F1DC7
4 changed files with 10 additions and 0 deletions

10
onclass/multiply.c Normal file
View file

@ -0,0 +1,10 @@
#include <stdio.h>
int main (void)
{
int a, b;
scanf("%d %d",&a, &b);
printf("%d", a * b);
return 0;
}