首页 > 试题广场 >

发布信息

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

输入描述:


输出描述:
I lost my cellphone!

                            JavaScript


console.log('I lost my cellphone!')

发表于 2020-06-19 18:09:09 回复(0)

测试一下设备能否正常使用

import java.util.*;
public class Main
{
    public static void main(String [] args)
    {
        System.out.println("I lost my cellphone!");
    }
}
发表于 2020-03-25 22:30:37 回复(0)
我直接 HolleWorld!
发表于 2021-10-06 23:47:16 回复(0)
这题是想表达什么
发表于 2020-03-15 16:47:42 回复(1)
唯独这题给我整不会了😂
发表于 2021-08-10 20:25:00 回复(0)
我手机丢了,我没有心情告诉大家,我更没有心情敲代码在屏幕上输出信息告诉大家。😀😀😀
发表于 2021-05-29 17:27:03 回复(0)
好难的题啊
#include<stdio.h>
int main()
{
    printf("I lost my cellphone!");  
}

发表于 2021-07-16 17:44:53 回复(2)
这题把我惊艳的直接来到讨论区
发表于 2021-07-10 15:38:06 回复(0)
感觉智商受到了侮辱哈
发表于 2021-03-02 20:11:02 回复(0)
#include <stdio.h>

int main() 
 {
printf("I lost my cellphone!\n");
return 0;
 }
我不会很深奥的解题技巧,但是简简单单的打印一行字还是会的[doge]
发表于 2022-10-15 23:42:43 回复(0)
#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)
BC31谢谢你在我卡题的时候侮辱了一下我的智商😅😅
发表于 2021-12-17 12:45:18 回复(0)
xdm 那句话一定要复制粘贴呀
发表于 2021-10-17 19:44:33 回复(0)
#include <stdio.h>

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

    printf(p);

    return 0;
}

发表于 2024-03-18 16:09:59 回复(0)
编辑于 2024-03-12 20:16:43 回复(0)
#include<stdio.h>
int main()
{
    printf("I lost my cellphone!");
    return 0;
}
发表于 2023-10-22 13:05:46 回复(0)
#include<stdio.h>

int main()
{
	char *a="I lost my cellphone!";
	printf("%s\n",a);
	return 0;
}

发表于 2023-06-10 17:25:03 回复(0)
#include <stdio.h>

int main() 
{
    printf("I lost my cellphone!\n");

}

发表于 2023-04-04 15:54:43 回复(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!");
    return 0;
}

发表于 2023-01-31 16:02:23 回复(0)