mirror of
https://git.wolves.top/wolves/leetcode.git
synced 2025-11-04 17:26:32 +08:00
10 lines
138 B
C
10 lines
138 B
C
#include <stdio.h>
|
|
|
|
int main(){
|
|
int i,j;
|
|
i = 16;
|
|
j = (i++)+i;
|
|
printf("%d\n",j);
|
|
i = 15;
|
|
printf("%d %d\n",++i,i);
|
|
} |