1.2 hello world

阅读 15

2024-09-02


printf的基本运用

printf函数是c程序中的输出函数其的用法是

#include <stdio.h>
 
int main ()
{
  printf("xxx")
  return 0
}

我们打印一个helloworld吧!

#include <stdio.h>
 
int main ()
{
  printf("hello world")
  return 0
}

在python中的运用 

print("hello world")

下一课,我们继续学习。

精彩评论(0)

0 0 举报