This commit is contained in:
miam1gh0st 2023-12-15 22:10:42 +08:00
parent f6cc2fe4e1
commit f66dfc70b0
18 changed files with 28 additions and 8 deletions

View file

@ -1,8 +0,0 @@
#include<stdio.h>
int main(){
int i=10, j=0;
if (j=0)i++; else i--;
printf("%d",i);
return 0;
}

View file

@ -0,0 +1,28 @@
/*
7-3 Programming in C is fun!
20
C课程组
Programming in C is fun!
:
:
Programming in C is fun!
16 KB
400 ms
64 MB
*/
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
printf("Programming in C is fun!");
return 0;
}