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")下一课,我们继续学习。
微信扫一扫
printf函数是c程序中的输出函数其的用法是
#include <stdio.h>
int main ()
{
printf("xxx")
return 0
}我们打印一个helloworld吧!
#include <stdio.h>
int main ()
{
printf("hello world")
return 0
}print("hello world")下一课,我们继续学习。
相关推荐