首页 > 试题广场 >

实践出真知

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

输入描述:
本题没有输入


输出描述:
Practice makes perfect!
为什么编译错误,求大佬解答

#include <iostream>
using namespace std;

int main() {
    cout << "Practice makes perfect!" << endl;

    return 0;
}
发表于 2022-01-14 20:33:40 回复(2)
R: 
cat("Practice makes perfect!") 
发表于 2021-05-17 15:41:50 回复(0)
printf(“Practice makes perfect!”);
发表于 2021-10-27 08:18:16 回复(0)
Go: fmt.Println("Practice makes perfect!")
发表于 2021-07-08 23:43:36 回复(0)

                             JavaScript

console.log('Practice makes perfect!')


发表于 2020-06-19 18:49:18 回复(1)
比较简单c++
#include<studio.h>
int main(){
printf(“
Practice makes perfect!
”);

return 0;
}
发表于 2020-08-07 21:13:52 回复(4)
#include<stdio.h>
int main()
{
    printf("Practice makes perfect!");
}
发表于 2020-03-09 02:42:17 回复(1)
public class Main{
    public static void main(String[] args){
        System.out.println("Practice makes perfect!");
    }
}
发表于 2020-03-22 10:56:20 回复(2)
#include<stdio.h>
main()
{
    printf("Practice makes perfect!");
}
发表于 2021-11-16 15:53:41 回复(0)
#include <iostream>
using namespace std;
int main();
    
    cout << "Practice makes perfect!" <<endl;
    return 0;
}
    这应该是最简单的了吧
发表于 2021-07-25 17:02:02 回复(3)
C#
using static System.Console;
using System;
class P
{
    public static void Main()
    {
        WriteLine("Practice makes perfect!");
    }
}

发表于 2020-03-23 10:59:53 回复(0)
#include <stdio.h> int main(int argc, char ** argv) { printf("Practice makes perfect!\n"); return 0; }</stdio.h>
发表于 2021-09-12 12:42:20 回复(1)
#include<stdio.h>
int main()
{
    printf("Practice makes perfect!");
    return 0;
}
发表于 2020-05-09 15:25:44 回复(0)

print ("practice makes perfect")

发表于 2020-03-29 22:39:33 回复(0)
public class Main{
    public static void main(String[] args)
    {
            System.out.println("Practice makes perfect!");
    }
}第一次写print了,前面啥都没加,难受的一批,专门还去本地idea编译了,一脸懵逼,然后想,貌似事java然后加上了System.out,语言学多了难受鸭/滑稽
发表于 2020-03-09 13:19:40 回复(1)
public class Main {
    public static void main(String[] args) {
        System.out.println("Practice makes perfect!");
    }
}

发表于 2024-01-23 23:41:14 回复(0)
这怎么做题啊,刚下载这个软件。一点不懂
发表于 2022-12-17 06:54:49 回复(0)
为啥做不了呢
发表于 2022-08-08 19:05:31 回复(1)

Print(“Practice makes perfect!”)

编辑于 2021-09-02 22:12:28 回复(0)
根据参考,输出Practice makes perfect,由基础语言C编写 #include<stdio.h> int main() { printf("Practice makes perfect"); return 0; }
编辑于 2020-03-25 21:59:47 回复(0)