#include<stdio.h>
int main()
{
printf("I lost my cellphone!");
} #include <stdio.h>
int main()
{
printf("I lost my cellphone!\n");
return 0;
}
我不会很深奥的解题技巧,但是简简单单的打印一行字还是会的[doge]
#include<stdio.h>
int main()
{
puts("I lost my cellphone!");
return 0;
}