69,999
社区成员




#include<stdio.h>
#include<conio.h>
int main()
{
printf("hell0");
getch();
}
#include <stdio.h>
#include<conio.h>
int main()
{
printf("Hello world!\n");
return 0;
}
Hello world!
Process returned 0 (0x0) execution time : 0.031 s
Press any key to continue.
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
Hello world!
Process returned 0 (0x0) execution time : 0.063 s
Press any key to continue.