首页 > 试题广场 >

发布信息

[编程题]发布信息
  • 热度指数:26197 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32M,其他语言64M
  • 算法知识视频讲解
你的手机丢了,在屏幕上输出信息告诉大家。

输入描述:


输出描述:
I lost my cellphone!
#include <stdio.h>

int main() 
{
    char* p = "I lost my cellphone!\n";

    printf(p);

    return 0;
}

发表于 2024-03-18 16:09:59 回复(0)
#include <stdio.h>

int main() {
    printf("I lost my cellphone!");
    return 0;
}

发表于 2023-03-07 20:56:57 回复(0)
#include <stdio.h>
int main()
{
   printf("I lost my cellphone!");
   reuurn 0;
}
发表于 2022-09-29 10:09:02 回复(0)
int main()
{
    char arr[]="I lost my cellphone!";
    int uo = sizeof(arr)/sizeof(arr[0]);
    int i = 0;
    for(i=0;i<uo-1;i++)
    {
        printf("%c",arr[i]);
    }
    return 0;
}
发表于 2022-08-14 21:54:33 回复(0)
居然出现在30题这个位置
发表于 2022-02-08 14:18:00 回复(0)
BC31谢谢你在我卡题的时候侮辱了一下我的智商😅😅
发表于 2021-12-17 12:45:18 回复(0)
#include<stdio.h>
int main()
{
	printf("I lost my cellphone!\n");
	return 0;
}

发表于 2021-12-16 16:22:53 回复(0)
xdm 那句话一定要复制粘贴呀
发表于 2021-10-17 19:44:33 回复(0)
#include<stdio.h>
int main()
{
    printf("I lost my cellphone!");
    return 0;
}
发表于 2021-07-17 20:32:05 回复(0)
好难的题啊
#include<stdio.h>
int main()
{
    printf("I lost my cellphone!");  
}

发表于 2021-07-16 17:44:53 回复(2)
#include<stdio.h>
void test2()
{
    printf("I lost my cellphone!\n");
}
void test1()
{
    test2();
}
void test()
    
{
    test1();
}
int main()
{
    test();
    return 0;
}给大家整点活
发表于 2021-07-14 16:42:12 回复(3)