8 lines
110 B
C++
8 lines
110 B
C++
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
int main()
|
||
|
{
|
||
|
printf("测试");
|
||
|
system("pause");
|
||
|
return 0;
|
||
|
}
|