ff
This commit is contained in:
parent
8eba38063c
commit
3571907d89
25
fact.c
25
fact.c
@ -1,18 +1,7 @@
|
||||
//#define _CRT_SECURE_NO_WARNINGS
|
||||
//#include <stdio.h>
|
||||
//#include <stdlib.h>
|
||||
//
|
||||
//long fact2(int n) {
|
||||
// if (n == 0) {
|
||||
// return 1;
|
||||
// }
|
||||
// long res = fact2(n - 1) * n;
|
||||
// return res;
|
||||
//}
|
||||
//
|
||||
//void main() {
|
||||
// int n = 4;
|
||||
// long f = fact2(n);
|
||||
//
|
||||
// printf("%d! = %ld", n, f);
|
||||
//}
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
printf("Hello world!");
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user