编写一个程序,用两个printf()语句分别输出自己的名字及地址
#include<stdio.h>
int main (void)
{
printf("my name is 小螃蟹 ");
printf("my address is 河南 ");
return 0;
}
编写一个程序,将上一个练习改成所有的输出只用一个printf()语句。
#include<stdio.h>
{
printf("my name is 小螃蟹\n my address is 河南平顶山\n");
return 0;
}
编写一个程序,输出下列文本,格式如下所示。
" It's freezing in here," he said coldly
#include <stdio.h>
int main void
{
printf("\" It's freezing in here,\"he said coldly");
return 0;
}
用for循环里面嵌套for循环计算一个9*9乘法表
#include <stdio.h>
int main(void)
{
int count = 9;
for (int i = 1; i <= 9; ++i){ //输入每行
for (int j = 1; j < i; ++j){ //输入每列
printf("%d*%d=%d ", i, j, i*j);
}
printf("\n");
}
return 0;
}
先执行外部循环,然后执行内部循环,