首页 > 试题广场 >

实践出真知

[编程题]实践出真知
  • 热度指数:92137 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32M,其他语言64M
  • 算法知识视频讲解
于老师经常告诉我们“学习编程最好的办法就是上机实践,因为你要对计算机下指令,想让计算机帮你干活,就得多和计算机‘交流’,实践才能出真知。”

输入描述:
本题没有输入


输出描述:
Practice makes perfect!
#include <stdio.h>

int main() 
{
    printf("Practice makes perfect!\n");
    
    return 0;
}

发表于 2024-03-18 14:03:17 回复(0)
#include <stdio.h>
int main()
{
printf("Practice makes perfect!\n");
return 0;
}

编辑于 2023-12-12 10:26:41 回复(0)
#include<stdio.h>
int main()
{
    printf("Practice makes perfect!\n");
    return 0;
}
为什么自测运行显示:
输出超限
您的程序打印了太多的内容

发表于 2023-05-08 19:54:28 回复(0)
#include <stdio.h>

int main()
{
    printf("Practice makes perfect!");
    return 0;
}

发表于 2023-01-26 21:14:07 回复(0)
#include<stdio.h>

int main(void){
    printf("Practice makes perfect!");
    return 0;
}
发表于 2022-03-14 20:54:59 回复(0)
#include <stdio.h>
int main()
{
    printf("Practice makes perfect!\n");
    return 0;
}
发表于 2022-02-08 17:13:53 回复(0)
#include<stdio.h>
int main(void){
    printf("Practice makes perfect!");  // 打印输出:Practice makes perfect!
    
    return 0;
}
这题目没啥好说的,C语言最简单的入门级题目,1.掌握C语言的代码书写格式 2.多敲代码熟练使用
发表于 2022-01-27 03:48:45 回复(0)
我是真没想到用void main就不对用int main再加个返回值就对了
发表于 2022-01-25 17:51:54 回复(1)
#include <stdio.h>

int main(){
    printf("Practice makes perfect!\n");
    return 0;
}
发表于 2022-01-14 20:22:36 回复(0)
#include<stdio.h>
int main()
{
    printf("Practice makes perfect!");
    return 0;
}
发表于 2022-01-03 12:39:22 回复(0)
int main()
{
    printf("Practice makes perfect!");
    return 0;
}

发表于 2021-11-22 17:54:24 回复(0)
#include <stdio.h>
int main(){
    printf("Practice makes perfect!");
}
只是添加了一个return 0;的代码,运行时间就减少了1ms,占用内存就减少了12KB,我搞不清原因
发表于 2021-09-22 23:45:10 回复(0)
#include <stdio.h>
int main()
    {
        printf("Practice makes perfect!");
    }
发表于 2021-09-14 16:38:59 回复(0)
#include <string>
int main()
{ printf("Practice makes perfect!");
}
发表于 2021-09-03 08:45:25 回复(0)